summaryrefslogtreecommitdiff
path: root/include/player.h
diff options
context:
space:
mode:
authorCatobat <69204835+Catobat@users.noreply.github.com>2023-04-29 00:32:15 +0200
committerCatobat <69204835+Catobat@users.noreply.github.com>2023-04-29 00:32:15 +0200
commit2e21fde027c86ab7ec5eeb8507ff7cbfc0a9aadc (patch)
treee31580cfb6d49bf267dbbffda6fcbceacf640364 /include/player.h
parentd5afe1f2dd8721791779bfa790eaefd7c5bc42ab (diff)
Name the interaction types
Diffstat (limited to 'include/player.h')
-rw-r--r--include/player.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/player.h b/include/player.h
index 1139d5f9..aa3fc160 100644
--- a/include/player.h
+++ b/include/player.h
@@ -437,6 +437,20 @@ s32 ModHealth(s32 delta);
void ModRupees(s32 delta);
void ModBombs(s32 delta);
+typedef enum {
+ INTERACTION_NONE,
+ INTERACTION_TALK,
+ INTERACTION_FUSE,
+ INTERACTION_OPEN_CHEST,
+ INTERACTION_UNUSED,
+ INTERACTION_USE_SMALL_KEY,
+ INTERACTION_USE_BIG_KEY,
+ INTERACTION_TALK_MINISH,
+ INTERACTION_LIFT_SHOP_ITEM,
+ INTERACTION_CHECK,
+ INTERACTION_DROP_PEDESTAL,
+} InteractionType;
+
// playerUtils.c
void DeleteClones(void);
void CreateItemEquippedAtSlot(/*EquipSlot*/ u32 equipSlot);