kima2/src/core/entityint.cpp

6 lines
112 B
C++
Raw Normal View History

2019-10-04 15:22:15 +02:00
#include "entityint.h"
2019-10-07 14:08:01 +02:00
EntityInt::EntityInt(int id) { id_ = id; }
2019-10-06 10:47:15 +02:00
2019-10-07 14:08:01 +02:00
void EntityInt::setId(int id) { id_ = id; }