mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-08-13 04:28:05 -05:00
15 lines
617 B
C
15 lines
617 B
C
#ifndef POKEPLATINUM_SCRIPT_FUNC_EXAMPLES_H
|
|
#define POKEPLATINUM_SCRIPT_FUNC_EXAMPLES_H
|
|
|
|
#include "battle_anim/battle_anim_system.h"
|
|
|
|
#include "sprite_system.h"
|
|
|
|
void BattleAnimScriptFunc_Nop(BattleAnimSystem *system);
|
|
void BattleAnimScriptFunc_AnimExample(BattleAnimSystem *system);
|
|
void BattleAnimScriptFunc_SoundExample(BattleAnimSystem *system);
|
|
void BattleAnimScriptFunc_GenericExample(BattleAnimSystem *system);
|
|
void BattleAnimScriptFunc_SpriteExample(BattleAnimSystem *system, SpriteSystem *spriteSys, SpriteManager *spriteManager, ManagedSprite *managedSprite);
|
|
|
|
#endif // POKEPLATINUM_SCRIPT_FUNC_EXAMPLES_H
|