Files
axyz/include/Engine/Core/ELockMouse.h
T
sippeangelo 5f9dce4303 Added Input
2015-11-24 10:37:50 +01:00

17 lines
301 B
C++

#ifndef Events_LockMouse_h__
#define Events_LockMouse_h__
#include "Core/EventBroker.h"
namespace Events
{
/** Called to lock mouse to the middle of the window. */
struct LockMouse : Event { };
/** Called to unlock mouse from the middle of the window. */
struct UnlockMouse : Event { };
}
#endif