aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/GameObject.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-06 13:45:05 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-06 13:45:05 +0200
commit509fb6ebdd27bc75375c1c51024ea906e25032c0 (patch)
tree89ef8b7e72b25c30e42d73de08769a4402ef0716 /src/crepe/GameObject.cpp
parent7c9d3452c99fcb89ea6df55755e90f741b23cf10 (diff)
WIP more code style enforcements
Diffstat (limited to 'src/crepe/GameObject.cpp')
-rw-r--r--src/crepe/GameObject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/GameObject.cpp b/src/crepe/GameObject.cpp
index 5ac9d7a..16dc62f 100644
--- a/src/crepe/GameObject.cpp
+++ b/src/crepe/GameObject.cpp
@@ -6,4 +6,4 @@ using namespace crepe;
GameObject::GameObject(std::uint32_t id, std::string name, std::string tag,
int layer)
- : mId(id), mName(name), mTag(tag), mActive(true), mLayer(layer) {}
+ : m_id(id), m_name(name), m_tag(tag), m_active(true), m_layer(layer) {}