diff --git a/SDK/include/NDK/Entity.hpp b/SDK/include/NDK/Entity.hpp index 8a0e09f78..cf8dd7f26 100644 --- a/SDK/include/NDK/Entity.hpp +++ b/SDK/include/NDK/Entity.hpp @@ -46,7 +46,7 @@ namespace Ndk bool IsValid() const; - void RemoveAllComponent(); + void RemoveAllComponents(); void RemoveComponent(nzUInt32 componentId); template void RemoveComponent(); diff --git a/SDK/include/NDK/Entity.inl b/SDK/include/NDK/Entity.inl index c4e79a7d2..4a9d35f27 100644 --- a/SDK/include/NDK/Entity.inl +++ b/SDK/include/NDK/Entity.inl @@ -90,7 +90,7 @@ namespace Ndk return HasComponent(componentId); } - inline void Entity::RemoveAllComponent() + inline void Entity::RemoveAllComponents() { m_components.clear(); }