Files
CGR3D-Eind/Racer/ObjectTemplate.cpp
2016-06-22 22:05:50 +02:00

15 lines
296 B
C++

#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()
{
}