summaryrefslogtreecommitdiff
path: root/source/modules/asura-core/input/cursor.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/modules/asura-core/input/cursor.h')
-rw-r--r--source/modules/asura-core/input/cursor.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/source/modules/asura-core/input/cursor.h b/source/modules/asura-core/input/cursor.h
index 05503ee..d420d66 100644
--- a/source/modules/asura-core/input/cursor.h
+++ b/source/modules/asura-core/input/cursor.h
@@ -16,6 +16,31 @@ namespace AsuraEngine
class CursorImpl;
+ // Types of system cursors.
+ enum SystemCursor
+ {
+ CURSOR_ARROW,
+ CURSOR_IBEAM,
+ CURSOR_WAIT,
+ CURSOR_CROSSHAIR,
+ CURSOR_WAITARROW,
+ CURSOR_SIZENWSE,
+ CURSOR_SIZENESW,
+ CURSOR_SIZEWE,
+ CURSOR_SIZENS,
+ CURSOR_SIZEALL,
+ CURSOR_NO,
+ CURSOR_HAND,
+ CURSOR_MAX_ENUM
+ };
+
+ enum CursorType
+ {
+ CURSORTYPE_SYSTEM,
+ CURSORTYPE_IMAGE,
+ CURSORTYPE_MAX_ENUM
+ };
+
// ָö
#include "Cursor.defs"