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

12 lines
160 B
C++

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