#define WINVER 0x0400 #include #include "Instance.h" std::string name; Instance* parent; std::vector children; static std::string className = "BaseInstance"; Instance::Instance(void) { name = "Default Game Instance"; className = "BaseInstance"; } Instance::~Instance(void) { name = "Default Game Instance"; } std::string Instance::getClassName() { return className; }