Added mouse click functions to image button

Added destructor for images
Deleting listener now on exit
This commit is contained in:
andreja6
2018-04-24 12:39:53 -07:00
parent 9ffe37c21a
commit d1a1ebd016
11 changed files with 121 additions and 52 deletions

View File

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