Rename basetypes to mathtypes
This commit is contained in:
parent
108be3035f
commit
e9308b839c
3 changed files with 4 additions and 2 deletions
|
@ -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',
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef _VECTOR2_H_
|
||||
#define _VECTOR2_H_
|
||||
|
||||
#include "basetypes.h"
|
||||
#include "mathtypes.h"
|
||||
|
||||
struct vector2
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue