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