Utility: Fix compilation

This commit is contained in:
Lynix 2017-01-19 15:21:29 +01:00
parent 76d4359c3b
commit c4574ed7ec
2 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@
#include <Nazara/Prerequesites.hpp>
#include <Nazara/Core/HandledObject.hpp>
#include <Nazara/Core/ObjectRef.hpp>
#include <Nazara/Core/ObjectHandle.hpp>
#include <Nazara/Core/Signal.hpp>
#include <Nazara/Utility/Cursor.hpp>
#include <Nazara/Utility/Enums.hpp>
@ -18,7 +18,7 @@ namespace Nz
{
class CursorController;
using CursorControllerHandle = Nz::ObjectRef<CursorController>;
using CursorControllerHandle = ObjectHandle<CursorController>;
class CursorController : public HandledObject<CursorController>
{

View File

@ -18,7 +18,7 @@ namespace Nz
{
class EventHandler;
using EventHandlerHandle = Nz::ObjectRef<EventHandler>;
using EventHandlerHandle = ObjectHandle<EventHandler>;
class EventHandler : public HandledObject<EventHandler>
{