R-PAGE
Resistance's Portable-Adventure-Game-Engine
mouse_ptr.h
Go to the documentation of this file.
1 /* Athanor 2, Original game by Eric "Atlantis" Safar, (C) Safargames 2019
2  Amiga version by Francois "Astrofra" Gutherz.
3 */
4 
5 #include <exec/types.h>
6 #include "rpage/utils.h"
7 
8 #ifndef _POINTER_DATA_
9 #define _POINTER_DATA_
10 
11 #define MOUSE_CURSOR_POINT 0
12 #define MOUSE_CURSOR_WAIT 1
13 #define MOUSE_CURSOR_READ 2
14 
15 #define SYSTEM_CURSOR_HEIGHT 16L
17 extern UWORD chip system_cursors_img[3][36];
18 
19 // /* Legacy (== vintage) AmigaOS 1.3 cursor */
20 // extern USHORT chip pointer_normal_data[36];
21 
22 // /* Wait cursor */
23 // extern USHORT chip wait_pointer[(WAIT_POINTER_HEIGHT * 2) + 4];
24 
25 /* Custom cursors */
26 extern vec2 game_cursors_hotspot[4];
27 extern UWORD chip game_cursors_img[4][36];
28 
29 #endif
UWORD chip system_cursors_img[3][36]
Definition: utils.h:52
UWORD chip game_cursors_img[4][36]
vec2 system_cursors_hotspot[3]
unsigned short UWORD
Definition: utils.h:28
vec2 game_cursors_hotspot[4]