#ifndef _SHIP_H #define _SHIP_H #include typedef struct ship_t { Vector2 position; Vector2 velocity; Vector2 accel; Vector2 size; Vector2 direction; float angle; } ship; #endif //_SHIP_H