#ifndef ENTITY_H #define ENTITY_H class Entity { public: Entity(); ~Entity(); private: int uuid{-1}; }; #endif //ENTITY_H