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,21 @@
#ifndef LIME_UI_MOUSE_CURSOR_H
#define LIME_UI_MOUSE_CURSOR_H
namespace lime {
enum MouseCursor {
DEFAULT,
POINTER,
TEXT,
CUSTOM
};
}
#endif