kima2/src/core/entity.h

18 lines
253 B
C++

#ifndef ENTITY_H
#define ENTITY_H
#include <string>
#include <boost/uuid/uuid.hpp>
class Entity
{
public:
Entity();
~Entity();
const boost::uuids::uuid& getUuid() {return uuid;};
private:
boost::uuids::uuid uuid;
};
#endif //ENTITY_H