kima2/src/core/entity.h

13 lines
135 B
C++

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