kima2/src/core/entityint.cpp

6 lines
114 B
C++
Raw Normal View History

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