Files
Blocks3D/PhysicalInstance.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

11 lines
142 B
C++

#pragma once
#include "instance.h"
class PhysicalInstance :
public Instance
{
public:
PhysicalInstance(void);
~PhysicalInstance(void);
};