kima2/src/core/entityint.h

17 lines
225 B
C++

#ifndef ENTITY_INT_H
#define ENTITY_INT_H
#include "entity.h"
class EntityInt : public Entity
{
public:
void setId(int id);
int getId() const {return id_;};
protected:
int id_{};
};
#endif // ENTITY_INT_H