blob: 39add489bb1a39b27ed07fa40890307b63ef45b3 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef GUARD_DUNGEON_ACTION_H
#define GUARD_DUNGEON_ACTION_H
#include "dungeon_entity.h"
void SetAction(struct DungeonActionContainer *actionPointer, u16 action);
void SetWalkAction(struct DungeonActionContainer *actionPointer, s16 species);
#endif
|