Files
Racer/ObjectTemplate.cpp
T
2026-06-17 16:06:16 +02:00

15 lines
310 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()
{
}