aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Component.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-23 21:54:28 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-23 21:54:28 +0200
commit9b7be419c9dcc6ebd1e504713c7b2676ca3d2fdf (patch)
tree97a2fc5ce1ec1345bd6f44889682ea9a2ffafd76 /src/crepe/Component.h
parent080ad535e6fc6666b919b1a21b6986aaf9b678eb (diff)
`clang-format`
Diffstat (limited to 'src/crepe/Component.h')
-rw-r--r--src/crepe/Component.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/crepe/Component.h b/src/crepe/Component.h
index ccf95cb..9e10c42 100644
--- a/src/crepe/Component.h
+++ b/src/crepe/Component.h
@@ -9,11 +9,12 @@ class Component {
protected:
friend class crepe::ComponentManager;
Component(uint32_t id);
+
public:
virtual ~Component() = default;
public:
- uint32_t gameObjectId;
+ uint32_t game_object_id;
bool active;
};