Files
Blocks3D/Instance.cpp
andreja6 58ee5c9889 Added instance rendering
Added rendering and creation
2018-04-11 08:56:54 -07:00

22 lines
274 B
C++

#include <G3DAll.h>
#include "Instance.h"
std::string name;
Instance* parent;
static std::string className = "Instance";
Instance::Instance(void)
{
name = "Default Game Instance";
className = "Part";
}
Instance::~Instance(void)
{
name = "Default Game Instance";
}