(Component) Fixed Clone method

Former-commit-id: afa38a9b684f045dc3cf0d072736ebb6c47e4bd7
This commit is contained in:
Lynix
2015-03-01 13:41:44 +01:00
parent 99bf3d95f7
commit 7c73407fa4
2 changed files with 6 additions and 6 deletions

View File

@@ -19,11 +19,10 @@ namespace Ndk
Component();
virtual ~Component();
virtual BaseComponent* Clone() const override;
BaseComponent* Clone() const override;
};
template<typename ComponentType>
constexpr nzUInt32 GetComponentId();
template<typename ComponentType> constexpr nzUInt32 GetComponentId();
}
#include <NDK/Component.inl>