mirror of https://github.com/pret/pokeemerald.git
12 lines
455 B
C
12 lines
455 B
C
|
#ifndef GUARD_BATTLE_CONTROLLERS_H
|
||
|
#define GUARD_BATTLE_CONTROLLERS_H
|
||
|
|
||
|
// rom3.s, emitters
|
||
|
void EmitSetAttributes(u8 bufferId, u8 request, u8 c, u8 bytes, void *data);
|
||
|
void EmitMoveAnimation(u8 bufferId, u16 move, u8 turnOfMove, u16 movePower, s32 dmg, u8 friendship, struct DisableStruct* disableStructPtr, u8 multihit);
|
||
|
void EmitHealthBarUpdate(u8 bufferId, u16 hpValue);
|
||
|
|
||
|
void MarkBufferBankForExecution(u8 bank);
|
||
|
|
||
|
#endif // GUARD_BATTLE_CONTROLLERS_H
|