(Entity) Fixed typo in method name
Former-commit-id: 40588d78fe38b2ec9ca9998e0c7ce4c73af3b27b
This commit is contained in:
parent
40727cc0ca
commit
6bd6039051
|
|
@ -46,7 +46,7 @@ namespace Ndk
|
|||
|
||||
bool IsValid() const;
|
||||
|
||||
void RemoveAllComponent();
|
||||
void RemoveAllComponents();
|
||||
void RemoveComponent(nzUInt32 componentId);
|
||||
template<typename ComponentType> void RemoveComponent();
|
||||
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ namespace Ndk
|
|||
return HasComponent(componentId);
|
||||
}
|
||||
|
||||
inline void Entity::RemoveAllComponent()
|
||||
inline void Entity::RemoveAllComponents()
|
||||
{
|
||||
m_components.clear();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue