diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-05-12 08:05:34 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-05-12 08:05:34 -0400 |
commit | ee4522669875b694911635b0c6cfbde7003ef040 (patch) | |
tree | 7841fd9bb0bd29798d31e9fe819ab4ededba67d3 /include/entities.hpp | |
parent | 5432b278f8ed8c9aaeccf1ee7a4da540787f965d (diff) | |
parent | cab9a8f66e683d79b67a1a4d78b6e68009642534 (diff) |
RENDERING
Diffstat (limited to 'include/entities.hpp')
-rw-r--r-- | include/entities.hpp | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/include/entities.hpp b/include/entities.hpp index 5159d24..ce2e14d 100644 --- a/include/entities.hpp +++ b/include/entities.hpp @@ -25,12 +25,13 @@ * An entity type enumerator for identifying entities. */ enum _TYPE { - OBJECTT = -2, /**< an object (Object) */ - STRUCTURET, /**< a structure (Structures *) */ - PLAYERT, /**< the player (Player *) */ - NPCT, /**< an NPC (NPC *) */ - MERCHT, /**< a merchant (Merchant *) */ - MOBT /**< A mob (Mob *) */ + UNKNOWNT = -999, /**< who knows? */ + OBJECTT = -2, /**< an object (Object) */ + STRUCTURET, /**< a structure (Structures *) */ + PLAYERT, /**< the player (Player *) */ + NPCT, /**< an NPC (NPC *) */ + MERCHT, /**< a merchant (Merchant *) */ + MOBT /**< A mob (Mob *) */ }; /** @@ -279,6 +280,9 @@ public: // returns true if the coordinate is within the entity bool isInside(vec2 coord) const; + // a common constructor, clears variables + Entity(void); + // frees memory taken by the entity virtual ~Entity(){} }; @@ -329,7 +333,7 @@ public: virtual void wander(int); }; -class Merchant : public NPC{ +class Merchant : public NPC { public: std::vector<Trade>trade; uint currTrade; |