kima2/src/core/entityint.h

17 lines
225 B
C
Raw Normal View History

2019-10-04 15:22:15 +02:00
#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