You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
888 B
36 lines
888 B
//HEADER_GOES_HERE |
|
#ifndef __CURSOR_H__ |
|
#define __CURSOR_H__ |
|
|
|
extern int cursH; // weak |
|
extern int icursH28; // idb |
|
extern int cursW; // idb |
|
extern int pcursmonst; // idb |
|
extern int icursW28; // idb |
|
extern void *pCursCels; |
|
extern int icursH; // weak |
|
extern char pcursinvitem; // weak |
|
extern int icursW; // weak |
|
extern char pcursitem; // weak |
|
extern char pcursobj; // weak |
|
extern char pcursplr; // weak |
|
extern int cursmx; |
|
extern int cursmy; |
|
extern int dword_4B8CCC; // weak |
|
extern int pcurs; // idb |
|
|
|
void InitCursor(); |
|
void FreeCursor(); |
|
void SetICursor(int i); |
|
void SetCursor_(int i); |
|
void NewCursor(int i); |
|
void InitLevelCursor(); |
|
void CheckTown(); |
|
void CheckRportal(); |
|
void CheckCursMove(); |
|
|
|
/* rdata */ |
|
extern const int InvItemWidth[180]; |
|
extern const int InvItemHeight[180]; |
|
|
|
#endif /* __CURSOR_H__ */
|
|
|