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

20 lines
279 B
C++

#pragma once
#include <string>
#include "Vector.h"
class ObjectTemplate
{
public:
ObjectTemplate(std::string file, int color, bool collide, float scale, Vec3f rotation);
~ObjectTemplate();
std::string file;
int color;
bool canCollide;
float scale;
Vec3f rotation;
};