14 lines
201 B
C++
14 lines
201 B
C++
#ifndef Events_LockMouse_h__
|
|
#define Events_LockMouse_h__
|
|
|
|
#include "EventBroker.h"
|
|
|
|
namespace Events
|
|
{
|
|
|
|
struct LockMouse : Event { };
|
|
struct UnlockMouse : Event { };
|
|
|
|
}
|
|
|
|
#endif // Events_LockMouse_h__
|