Added some boilerplate

This commit is contained in:
2016-04-03 16:04:41 +10:00
parent 48b9a9b264
commit f23b929f8a
12 changed files with 300 additions and 9 deletions
+8 -3
View File
@@ -19,13 +19,18 @@
* 3. This notice may not be removed or altered from any source
* distribution.
*/
#pragma once
#include "entity.hpp"
class BarrierData: public Entity {
public:
BarrierData() = default;
~BarrierData() = default;
BarrierData(int instanceIndex);
~BarrierData();
private:
//
int instanceIndex = -1;
//for displaying the status of combatants: 0 empty, 1 green, 2 red
int slotData[8];
};