Files
Blocks3D/Instance.h
2018-04-12 19:25:17 -07:00

13 lines
180 B
C++

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