Implemented a few minor changes from the monster branch

This commit is contained in:
Kayne Ruse
2014-10-19 00:53:38 +11:00
parent bd2fd4ee97
commit 40c76b4285
5 changed files with 22 additions and 11 deletions
+2 -2
View File
@@ -26,8 +26,8 @@
class BaseMonster {
public:
BaseMonster();
virtual ~BaseMonster();
BaseMonster() = default;
virtual ~BaseMonster() = default;
private:
//
+4
View File
@@ -30,9 +30,13 @@ public:
LocalCharacter() = default;
~LocalCharacter() = default;
int SetRoomIndex(int i) { return roomIndex = i; }
int GetRoomIndex() { return roomIndex; }
Statistics* GetBaseStats() { return &baseStats; }
private:
int roomIndex = -1;
Statistics baseStats;
//TODO: weapons, armour, buffs, debuffs, etc.
};