Utility: Make EventHandler a handled object

This is a bit ironic.
This commit is contained in:
Lynix
2017-01-19 14:08:33 +01:00
parent b64d384c99
commit 282538876b

View File

@@ -14,7 +14,11 @@
namespace Nz
{
class EventHandler
class EventHandler;
using EventHandlerHandle = Nz::ObjectRef<EventHandler>;
class EventHandler : public HandledObject<EventHandler>
{
public:
EventHandler() = default;