kima2/src/core/entityint.cpp

10 lines
120 B
C++
Raw Normal View History

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