mirror of
https://github.com/FireEmblemUniverse/fireemblem8u.git
synced 2024-11-26 22:50:45 +00:00
15 lines
477 B
C
15 lines
477 B
C
#ifndef GUARD_TRAPFX_H
|
|
#define GUARD_TRAPFX_H
|
|
|
|
#include "proc.h"
|
|
|
|
void StartGasTrapAnim(ProcPtr, int x, int y, int direction);
|
|
void StartFireTrapAnim(ProcPtr, int x, int y);
|
|
void StartFireTrapAnim2(ProcPtr, int x, int y);
|
|
void StartUnkTrapAnim(ProcPtr, int x, int y, int direction, int time);
|
|
void StartArrowTrapAnim(ProcPtr, int x);
|
|
void StartShowMapChangeAnim(ProcPtr, int x, int y);
|
|
void StartPikeTrapAnim(ProcPtr, int x, int y, int direction);
|
|
|
|
#endif /* GUARD_TRAPFX_H */
|