Different game

This commit is contained in:
2016-06-22 22:05:50 +02:00
parent 0f7895dc09
commit 5910170fd2
145 changed files with 9790 additions and 936 deletions
+14
View File
@@ -0,0 +1,14 @@
#include "ObjectTemplate.h"
ObjectTemplate::ObjectTemplate(std::string file, int color, bool collide, float scale, Vec3f rotation)
{
this->file = file;
this->color = color;
this->canCollide = collide;
this->scale = scale;
this->rotation = rotation;
}
ObjectTemplate::~ObjectTemplate()
{
}