kima2/src/core/entityint.cpp

10 lines
120 B
C++

#include "entityint.h"
EntityInt::EntityInt(int id) {
id_ = id;
}
void EntityInt::setId(int id) {
id_ = id;
}