Added instance types

I feel like the way it works now isn't the best
This commit is contained in:
andreja6
2018-04-10 21:59:55 -07:00
parent 0908d93f29
commit 59f6652396
7 changed files with 74 additions and 1 deletions

View File

@@ -5,4 +5,9 @@ class Instance
public:
Instance(void);
~Instance(void);
std::string name;
int getType();
Instance* parent; // Another pointer.
static const int BASE_INSTANCE;
static const int PHYSICAL_INSTANCE;
};