Fix compilation error; add final specifiers

This commit is contained in:
EmosewaMC
2023-07-04 22:38:35 -07:00
parent c22040c6eb
commit 8ede5b87ca
7 changed files with 7 additions and 7 deletions

View File

@@ -17,7 +17,7 @@ enum class eStateChangeType : uint32_t;
* Represents the stats of an entity, for example its health, imagination and armor. Also handles factions, which
* indicate which enemies this entity has.
*/
class DestroyableComponent : public Component {
class DestroyableComponent final : public Component {
public:
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::DESTROYABLE;