Rename basetypes to mathtypes

This commit is contained in:
Marc Di Luzio 2014-12-16 13:12:59 +00:00
parent 108be3035f
commit e9308b839c
3 changed files with 4 additions and 2 deletions

View file

@ -1,9 +1,11 @@
#ifndef _BASETYPES_H_
#define _BASETYPES_H_
// Coordinate types
typedef short coord_t;
typedef unsigned short ucoord_t;
// Direction representation
enum dir_t : char
{
N = 'N',

View file

@ -1,7 +1,7 @@
#ifndef _VECTOR2_H_
#define _VECTOR2_H_
#include "basetypes.h"
#include "mathtypes.h"
struct vector2
{

View file

@ -2,7 +2,7 @@
#define _BOARD_H_
#include "gametypes.h"
#include "basetypes.h"
#include "mathtypes.h"
#include <limits> // std::numeric_limits
#include <vector> // std::vector