#ifndef ENTITY_H #define ENTITY_H #include "vec.h" class Entity{ public: Vec2 position; Vec2 size; Vec2 speed; }; #endif // ENTITY_H