Files
axyz/include/Engine/Core/ELockMouse.h
T
2015-11-30 17:02:24 +01:00

17 lines
296 B
C++

#ifndef Events_LockMouse_h__
#define Events_LockMouse_h__
#include "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