kima2/src/core/entity.cpp

7 lines
127 B
C++
Raw Normal View History

2018-07-05 16:29:43 +02:00
#include "entity.h"
2018-07-06 10:54:44 +02:00
#include <boost/uuid/uuid_generators.hpp>
2018-07-05 16:29:43 +02:00
2018-07-06 10:54:44 +02:00
Entity::Entity() : uuid(boost::uuids::random_generator()())
{
2018-07-05 16:29:43 +02:00
}