aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/GameObject.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-06 14:10:52 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-06 14:10:52 +0200
commitf8bc2a06a90c0ee172054db7ae2e1fdae09d14a3 (patch)
treee858037e49a8a94734026d636fceb28a00b1ab99 /src/crepe/GameObject.h
parent509fb6ebdd27bc75375c1c51024ea906e25032c0 (diff)
code standard v3
Diffstat (limited to 'src/crepe/GameObject.h')
-rw-r--r--src/crepe/GameObject.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/crepe/GameObject.h b/src/crepe/GameObject.h
index f0f5ea0..114990c 100644
--- a/src/crepe/GameObject.h
+++ b/src/crepe/GameObject.h
@@ -7,16 +7,16 @@ namespace crepe {
class GameObject {
public:
- GameObject(std::uint32_t id, std::string name, std::string tag, int layer);
+ GameObject(uint32_t id, std::string name, std::string tag, int layer);
template <typename T, typename... Args>
void add_component(Args &&... args);
- std::uint32_t m_id;
- std::string m_name;
- std::string m_tag;
- bool m_active;
- int m_layer;
+ uint32_t id;
+ std::string name;
+ std::string tag;
+ bool active;
+ int layer;
};
} // namespace crepe