29 lines
452 B
C
29 lines
452 B
C
|
/*
|
||
|
* Mr. 4th Dimention - Allen Webster
|
||
|
*
|
||
|
* 07.11.2017
|
||
|
*
|
||
|
* Application Cursor Codes
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
// TOP
|
||
|
|
||
|
#if !defined(FRED_CURSOR_CODES_H)
|
||
|
#define FRED_CURSOR_CODES_H
|
||
|
|
||
|
typedef enum Application_Mouse_Cursor{
|
||
|
APP_MOUSE_CURSOR_DEFAULT,
|
||
|
APP_MOUSE_CURSOR_ARROW,
|
||
|
APP_MOUSE_CURSOR_IBEAM,
|
||
|
APP_MOUSE_CURSOR_LEFTRIGHT,
|
||
|
APP_MOUSE_CURSOR_UPDOWN,
|
||
|
// never below this
|
||
|
APP_MOUSE_CURSOR_COUNT
|
||
|
} Application_Mouse_Cursor;
|
||
|
|
||
|
#endif
|
||
|
|
||
|
// BOTTOM
|
||
|
|