Files
lime/project/include/ui/MouseCursor.h
2014-12-29 12:28:14 -08:00

21 lines
168 B
C++

#ifndef LIME_UI_MOUSE_CURSOR_H
#define LIME_UI_MOUSE_CURSOR_H
namespace lime {
enum MouseCursor {
DEFAULT,
POINTER,
TEXT,
CUSTOM
};
}
#endif