diff options
| author | Catobat <69204835+Catobat@users.noreply.github.com> | 2023-04-29 00:32:15 +0200 |
|---|---|---|
| committer | Catobat <69204835+Catobat@users.noreply.github.com> | 2023-04-29 00:32:15 +0200 |
| commit | 2e21fde027c86ab7ec5eeb8507ff7cbfc0a9aadc (patch) | |
| tree | e31580cfb6d49bf267dbbffda6fcbceacf640364 /include | |
| parent | d5afe1f2dd8721791779bfa790eaefd7c5bc42ab (diff) | |
Name the interaction types
Diffstat (limited to 'include')
| -rw-r--r-- | include/player.h | 14 |
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); |
