mirror of
https://github.com/pret/pokefirered.git
synced 2026-04-25 07:19:36 -05:00
14 lines
302 B
C
14 lines
302 B
C
#ifndef GUARD_FIELDDOOR_H
|
|
#define GUARD_FIELDDOOR_H
|
|
|
|
#include "global.h"
|
|
|
|
void FieldSetDoorOpened(u32, u32);
|
|
void FieldSetDoorClosed(u32, u32);
|
|
s8 FieldAnimateDoorClose(u32, u32);
|
|
s8 FieldAnimateDoorOpen(u32, u32);
|
|
bool8 FieldIsDoorAnimationRunning(void);
|
|
u32 GetDoorSoundEffect(u32 x, u32 y);
|
|
|
|
#endif
|