NazaraEngine/include/Nazara/Utility/CursorController.inl

17 lines
426 B
C++

// 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>