2018-06-19 00:16:32 +00:00
|
|
|
//HEADER_GOES_HERE
|
2018-06-20 09:47:24 +00:00
|
|
|
#ifndef __CURSOR_H__
|
|
|
|
#define __CURSOR_H__
|
2018-06-07 02:25:54 +00:00
|
|
|
|
|
|
|
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 __cdecl InitCursor();
|
|
|
|
void __cdecl FreeCursor();
|
|
|
|
void __fastcall SetICursor(int i);
|
|
|
|
void __fastcall SetCursor(int i);
|
|
|
|
void __fastcall NewCursor(int i);
|
|
|
|
void __cdecl InitLevelCursor();
|
|
|
|
void __cdecl CheckTown();
|
|
|
|
void __cdecl CheckRportal();
|
|
|
|
void __cdecl CheckCursMove();
|
|
|
|
|
|
|
|
/* data */
|
|
|
|
extern int InvItemWidth[180];
|
|
|
|
extern int InvItemHeight[180];
|
2018-06-20 09:47:24 +00:00
|
|
|
|
|
|
|
#endif /* __CURSOR_H__ */
|