#ifndef LIME_UI_MOUSE_H #define LIME_UI_MOUSE_H #include #include namespace lime { class Mouse { public: static MouseCursor currentCursor; static void Hide (); static void SetCursor (MouseCursor cursor); static void SetLock (bool lock); static void Show (); static void Warp (int x, int y, Window* window); }; } #endif