18 lines
No EOL
178 B
C
18 lines
No EOL
178 B
C
#ifndef _VECTOR2_H_
|
|
#define _VECTOR2_H_
|
|
|
|
#include "basetypes.h"
|
|
|
|
struct vector2
|
|
{
|
|
coord_t x;
|
|
coord_t y;
|
|
};
|
|
|
|
struct uvector2
|
|
{
|
|
ucoord_t x;
|
|
ucoord_t y;
|
|
};
|
|
|
|
#endif //_VECTOR2_H_
|