ttrts/maths/vector2.h

12 lines
No EOL
132 B
C

#ifndef _VECTOR2_H_
#define _VECTOR2_H_
#include "basetypes.h"
struct vector2
{
square_t x;
square_t y;
};
#endif //_VECTOR2_H_