Files
Blocks3D/Instance.h
andreja6 59f6652396 Added instance types
I feel like the way it works now isn't the best
2018-04-10 21:59:55 -07:00

14 lines
222 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;
};