Sdk: Add GraphicsComponentHandle

Former-commit-id: 437240bf060a20c92f29c03a8f913fc7355dab05
This commit is contained in:
Lynix 2016-03-31 21:15:10 +02:00
parent 64cd5e0cf3
commit 1c1625070e
1 changed files with 5 additions and 1 deletions

View File

@ -13,7 +13,11 @@
namespace Ndk
{
class NDK_API GraphicsComponent : public Component<GraphicsComponent>
class GraphicsComponent;
using GraphicsComponentHandle = Nz::ObjectHandle<GraphicsComponent>;
class NDK_API GraphicsComponent : public Component<GraphicsComponent>, public Nz::HandledObject<GraphicsComponent>
{
friend class RenderSystem;