Native cleanup, merge lime.ui.Mouse into Window

This commit is contained in:
Joshua Granick
2018-07-09 15:31:55 -07:00
parent 90916418a0
commit 6ae72ea462
26 changed files with 811 additions and 1473 deletions

View File

@@ -0,0 +1,31 @@
#ifndef LIME_UI_CURSOR_H
#define LIME_UI_CURSOR_H
namespace lime {
enum Cursor {
HIDDEN,
ARROW,
CROSSHAIR,
DEFAULT,
MOVE,
POINTER,
RESIZE_NESW,
RESIZE_NS,
RESIZE_NWSE,
RESIZE_WE,
TEXT,
WAIT,
WAIT_ARROW,
CUSTOM
};
}
#endif