Store in GIT

This commit is contained in:
2026-06-17 16:06:16 +02:00
parent 0c9e91dc95
commit 6144032b88
110 changed files with 15967 additions and 0 deletions
+19
View File
@@ -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;
};