diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-12 20:54:07 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-12 20:54:07 +0200 |
commit | 5d041cce13da66aa3457d236579a9ac90ebf7618 (patch) | |
tree | 2107c4cad158bb3875faa838c12e064d6aba03f2 /src/crepe/Component.h | |
parent | 579824011d5e8776e2079d6624a39535517760ff (diff) |
fix constructor/destructor member visibility for component manager
Diffstat (limited to 'src/crepe/Component.h')
-rw-r--r-- | src/crepe/Component.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/crepe/Component.h b/src/crepe/Component.h index 16a4ce5..00b2164 100644 --- a/src/crepe/Component.h +++ b/src/crepe/Component.h @@ -3,12 +3,14 @@ namespace crepe { class Component { +protected: + Component() = default; public: - Component(); + virtual ~Component() = default; // TODO: shouldn't this constructor be deleted because this class will never // directly be instantiated? - bool active; + bool active = true; }; } // namespace crepe |