diff --git a/SDK/include/NDK/BaseComponent.hpp b/SDK/include/NDK/BaseComponent.hpp index f548c7cd3..a3a4a08fb 100644 --- a/SDK/include/NDK/BaseComponent.hpp +++ b/SDK/include/NDK/BaseComponent.hpp @@ -19,7 +19,7 @@ namespace Ndk virtual BaseComponent* Clone() const = 0; - nzUInt32 GetComponentId() const; + nzUInt32 GetId() const; static nzUInt32 GetNextId(); diff --git a/SDK/include/NDK/BaseComponent.inl b/SDK/include/NDK/BaseComponent.inl index a068e77ae..cea669f60 100644 --- a/SDK/include/NDK/BaseComponent.inl +++ b/SDK/include/NDK/BaseComponent.inl @@ -9,7 +9,7 @@ namespace Ndk { } - inline nzUInt32 BaseComponent::GetComponentId() const + inline nzUInt32 BaseComponent::GetId() const { return m_componentId; }