This commit is contained in:
2024-08-08 18:03:20 +03:00
parent b8f041584f
commit 0aefa70fb8
9 changed files with 65 additions and 7 deletions

15
src/Game/GameObject.hpp Normal file
View File

@@ -0,0 +1,15 @@
#pragma once
#include "../math.hpp"
#include <set>
class GameObject {
public:
Vec2 scale = { 1, 1 };
Vec2 position;
angle_t rotation;
private:
// std::set<Component> components;
};