Started rewriting

This commit is contained in:
2016-05-17 15:31:49 +02:00
parent 5df4a1d8d0
commit 876ec56780
29 changed files with 884 additions and 79 deletions
+16
View File
@@ -0,0 +1,16 @@
#pragma once
#include "Header.h"
class ModelInstance
{
private:
public:
ModelInstance();
~ModelInstance();
Vec3f translation;
Vec3f rotation;
Vec3f scale;
};