From 6bd60390511828f9e878fb37ec66fd603cdc3213 Mon Sep 17 00:00:00 2001 From: Lynix Date: Sat, 14 Mar 2015 13:53:10 +0100 Subject: [PATCH] (Entity) Fixed typo in method name Former-commit-id: 40588d78fe38b2ec9ca9998e0c7ce4c73af3b27b --- SDK/include/NDK/Entity.hpp | 2 +- SDK/include/NDK/Entity.inl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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(); }