ttrts/maths/vector2.h
2014-12-16 13:12:59 +00:00

18 lines
No EOL
178 B
C

#ifndef _VECTOR2_H_
#define _VECTOR2_H_
#include "mathtypes.h"
struct vector2
{
coord_t x;
coord_t y;
};
struct uvector2
{
ucoord_t x;
ucoord_t y;
};
#endif //_VECTOR2_H_