Files
Blocks3D/Instance.h
2018-04-11 06:42:11 -07:00

15 lines
240 B
C++

#pragma once
class Instance
{
public:
Instance(void);
~Instance(void);
std::string name;
int getType();
Instance* parent; // Another pointer.
static const int BASE_INSTANCE;
static const int PHYSICAL_INSTANCE;
static int type;
};