Added base instance classes

This commit is contained in:
andreja6
2018-04-10 18:02:19 -07:00
parent f8f309f98e
commit d899c4fa4e
2 changed files with 17 additions and 0 deletions

9
Instance.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include "Instance.h"
Instance::Instance(void)
{
}
Instance::~Instance(void)
{
}

8
Instance.h Normal file
View File

@@ -0,0 +1,8 @@
#pragma once
class Instance
{
public:
Instance(void);
~Instance(void);
};