Add Lime mouse cursor support on SDL2

This commit is contained in:
Joshua Granick
2014-12-29 12:28:14 -08:00
parent 95df09575f
commit f1d08f096f
7 changed files with 219 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
#ifndef LIME_UI_MOUSE_H
#define LIME_UI_MOUSE_H
#include <ui/MouseCursor.h>
namespace lime {
class Mouse {
public:
static MouseCursor currentCursor;
static void Hide ();
static void SetCursor (MouseCursor cursor);
static void Show ();
};
}
#endif