kima2/src/core/entity.h

18 lines
253 B
C
Raw Normal View History

2018-07-05 16:29:43 +02:00
#ifndef ENTITY_H
#define ENTITY_H
2018-07-06 10:54:44 +02:00
#include <string>
#include <boost/uuid/uuid.hpp>
2018-07-05 16:29:43 +02:00
class Entity
{
public:
Entity();
~Entity();
2018-07-06 10:54:44 +02:00
const boost::uuids::uuid& getUuid() {return uuid;};
2018-07-05 16:29:43 +02:00
private:
2018-07-06 10:54:44 +02:00
boost::uuids::uuid uuid;
2018-07-05 16:29:43 +02:00
};
#endif //ENTITY_H