#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_