#ifndef ENTITIES_H #define ENTITIES_H #include class Entities{ public: float width; float height; float speed; int type; vec2 loc; vec2 loci; vec2 vel; vec2 velg; void spawn(float, float); }; class Player : public Entities{ public: Player(); ~Player(); }; #endif // ENTITIES_H