aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/GameObject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/GameObject.cpp')
-rw-r--r--src/crepe/GameObject.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/crepe/GameObject.cpp b/src/crepe/GameObject.cpp
index 16dc62f..304f75a 100644
--- a/src/crepe/GameObject.cpp
+++ b/src/crepe/GameObject.cpp
@@ -1,9 +1,7 @@
#include "GameObject.h"
-#include "ComponentManager.h"
-
using namespace crepe;
GameObject::GameObject(std::uint32_t id, std::string name, std::string tag,
int layer)
- : m_id(id), m_name(name), m_tag(tag), m_active(true), m_layer(layer) {}
+ : id(id), name(name), tag(tag), active(true), layer(layer) {}