summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCatobat <69204835+Catobat@users.noreply.github.com>2023-04-30 16:00:33 +0200
committerCatobat <69204835+Catobat@users.noreply.github.com>2023-04-30 16:00:33 +0200
commit06c0f111e7b411a059646c67a6373c783a81b85b (patch)
tree215bc3ad45938c671bbfc6ec40f665cab3061eb2 /include
parent985eeb67a17517d522e963a1e52eafcd07712520 (diff)
Name all possible R button actions
Diffstat (limited to 'include')
-rw-r--r--include/player.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/player.h b/include/player.h
index 0805feab..489b305c 100644
--- a/include/player.h
+++ b/include/player.h
@@ -452,6 +452,22 @@ typedef enum {
INTERACTION_NULL = 0xFF,
} InteractionType;
+typedef enum {
+ R_ACTION_NONE,
+ R_ACTION_CANCEL,
+ R_ACTION_DROP,
+ R_ACTION_THROW,
+ R_ACTION_READ,
+ R_ACTION_CHECK,
+ R_ACTION_OPEN,
+ R_ACTION_SPEAK,
+ R_ACTION_GRAB,
+ R_ACTION_LIFT,
+ R_ACTION_GROW,
+ R_ACTION_SHRINK,
+ R_ACTION_ROLL,
+} ActionRButton;
+
// playerUtils.c
void DeleteClones(void);
void CreateItemEquippedAtSlot(/*EquipSlot*/ u32 equipSlot);