20 lines
534 B
C
20 lines
534 B
C
/************************/
|
|
/* battleMap.h */
|
|
/************************/
|
|
#ifndef _BATTLE_MAP_H_
|
|
#define _BATTLE_MAP_H_
|
|
|
|
// ????????????
|
|
#define BATTLE_MAP_FILES 220
|
|
|
|
// ??????????
|
|
extern int BattleMapNo;
|
|
|
|
// ?????????????????????? ***************************/
|
|
BOOL ReadBattleMap( int no );
|
|
|
|
// ??????? ***********************************************************/
|
|
void DrawBattleMap( void );
|
|
void 显示道具数据(short x,short y,UCHAR 层次,char* 内容,unsigned int 形像,char*名字 );
|
|
#endif
|