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