Utility: Add CursorController

This commit is contained in:
Lynix
2017-01-19 14:17:26 +01:00
parent 282538876b
commit b884f5783c
5 changed files with 82 additions and 10 deletions

View File

@@ -0,0 +1,16 @@
// Copyright (C) 2015 Jérôme Leclercq
// This file is part of the "Nazara Engine - Utility module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#include <Nazara/Utility/CursorController.hpp>
#include <Nazara/Utility/Debug.hpp>
namespace Nz
{
inline void CursorController::UpdateCursor(const Cursor& cursor)
{
OnCursorUpdated(this, cursor);
}
}
#include <Nazara/Utility/DebugOff.hpp>