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

10
PhysicalInstance.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
#include "instance.h"
class PhysicalInstance :
public Instance
{
public:
PhysicalInstance(void);
~PhysicalInstance(void);
};