Files
Blocks3D/Instance.h
andreja6 d1a1ebd016 Added mouse click functions to image button
Added destructor for images
Deleting listener now on exit
2018-04-24 12:39:53 -07:00

13 lines
188 B
C++

#include <G3DAll.h>
#pragma once
class Instance
{
public:
Instance(void);
virtual ~Instance(void);
std::string name;
Instance* parent; // Another pointer.
std::string className;
};