blob: 48f81d5176dfe9b7257a26f0119a18b81f6bcdd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef GUARD_DUNGEON_ACTION_H
#define GUARD_DUNGEON_ACTION_H
#include "dungeon_entity.h"
// 0x44C94
void SetAction(struct DungeonActionContainer *actionPointer, u16 action);
// 0x44CA0
void SetWalkAction(struct DungeonActionContainer *actionPointer, s16 species);
#endif
|