blob: 6d8fcb306ff3905578194260ce2248f19d09149d (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "global.h"
#include "dungeon_action.h"
#include "dungeon_entity.h"
void SetAction(struct DungeonActionContainer *actionPointer, u16 action)
{
actionPointer->action = action;
actionPointer->actionUseIndex = 0;
actionPointer->unkC = 0;
}
|