Store in GIT
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user