2016-12-24 08:45:52 +08:00
|
|
|
#ifndef __BATTLE_COMMAND_H__
|
|
|
|
#define __BATTLE_COMMAND_H__
|
|
|
|
|
|
|
|
void BattleCommandDispach(
|
|
|
|
int fd,
|
|
|
|
char *command
|
|
|
|
);
|
|
|
|
|
|
|
|
void BattleEncountOut(
|
|
|
|
int charaindex
|
|
|
|
);
|
|
|
|
|
|
|
|
BOOL BATTLE_CommandSend( int charaindex, char *pszCommand );
|
|
|
|
|
|
|
|
BOOL BATTLE_MakeCharaString(
|
|
|
|
int battleindex,
|
2017-01-13 23:37:03 +08:00
|
|
|
char *pszCommand, // 平乓仿弁正□树 请 燮
|
|
|
|
int size // 扔奶术
|
2016-12-24 08:45:52 +08:00
|
|
|
);
|
|
|
|
|
|
|
|
void BATTLE_CharSendAll( int battleindex );
|
|
|
|
|
|
|
|
BOOL BATTLE_PetDefaultCommand( int petindex );
|
|
|
|
|
|
|
|
void BATTLE_ActSettingSend( int battleindex );
|
|
|
|
|
|
|
|
#endif
|