diff options
Diffstat (limited to 'src/crepe/Component.h')
-rw-r--r-- | src/crepe/Component.h | 3 |
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; }; |