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

16 lines
232 B
C++

#pragma once
#include "instance.h"
class PhysicalInstance :
public Instance
{
public:
PhysicalInstance(void);
~PhysicalInstance(void);
Vector3 size;
Vector3 position;
Vector3 velocity;
Vector3 rotvelocity;
Color3 color;
};