(NDK) Modified component/system registration interface

Let's hope it's the last time I do this


Former-commit-id: 75f8e63e90e067a7d21efa6a1226ae4bbe050ab9
This commit is contained in:
Lynix
2015-04-05 15:57:24 +02:00
parent 28b0e26a88
commit 6a99b38be1
8 changed files with 52 additions and 33 deletions

View File

@@ -19,6 +19,11 @@ namespace Ndk
virtual ~Component();
BaseComponent* Clone() const override;
static ComponentIndex RegisterComponent(ComponentId id);
template<unsigned int N>
static ComponentIndex RegisterComponent(const char (&name)[N]);
};
}