This commit is contained in:
2025-01-02 13:56:33 -05:00
parent 30bdd66086
commit 18072f3b66
20 changed files with 109 additions and 75 deletions

View File

@@ -2,7 +2,11 @@
#include <J3ML/LinearAlgebra/Vector2.hpp>
#include <vector>
class Entity {
namespace Engine {
class Entity;
}
class Engine::Entity {
protected:
std::vector<Entity*> children{};
Vector2 position = {0, 0};