(Entity) Fixed typo in method name

Former-commit-id: 40588d78fe38b2ec9ca9998e0c7ce4c73af3b27b
This commit is contained in:
Lynix 2015-03-14 13:53:10 +01:00
parent 40727cc0ca
commit 6bd6039051
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ namespace Ndk
bool IsValid() const;
void RemoveAllComponent();
void RemoveAllComponents();
void RemoveComponent(nzUInt32 componentId);
template<typename ComponentType> void RemoveComponent();

View File

@ -90,7 +90,7 @@ namespace Ndk
return HasComponent(componentId);
}
inline void Entity::RemoveAllComponent()
inline void Entity::RemoveAllComponents()
{
m_components.clear();
}