Added instance rendering

Added rendering and creation
This commit is contained in:
andreja6
2018-04-11 08:56:54 -07:00
parent 7d38523166
commit 58ee5c9889
5 changed files with 44 additions and 12 deletions

View File

@@ -3,11 +3,12 @@
std::string name;
Instance* parent;
static const std::string className = "Instance";
static std::string className = "Instance";
Instance::Instance(void)
{
name = "Default Game Instance";
className = "Part";
}
Instance::~Instance(void)