19 inline std::string
getName() {
return name; }
23 inline void setName(std::string name) { this->name = name; }
An Entity is the base class for all data and behaviour oriented objects in meteor....
Definition entity.h:9
void setName(std::string name)
Sets name of entity.
Definition entity.h:23
virtual bool equals(MEntity *other)
Checks equality between two entities.
virtual std::string toString()
Get this object as a string.
std::string getName()
Definition entity.h:19