All Changes

This commit is contained in:
Moses Troyer
2025-08-16 17:15:49 +00:00
committed by Banjo Kazooie
parent fd208f77ca
commit c2dd933d22
389 changed files with 7824 additions and 6965 deletions

View File

@@ -0,0 +1,15 @@
enum ability_used {
ABILITY_USED_JUMP = 0x0,
ABILITY_USED_FLAP = 0x1,
ABILITY_USED_FLIP = 0x2,
ABILITY_USED_SWIM = 0x3,
ABILITY_USED_CLIMB = 0x4,
ABILITY_USED_BEAK_BARGE = 0x5,
ABILITY_USED_SLIDE = 0x6,
ABILITY_USED_EGG = 0x7,
ABILITY_USED_FLY = 0x8,
ABILITY_USED_SHOCK = 0x9,
ABILITY_USED_PECK = 0xA,
ABILITY_USED_CLAW = 0xB,
ABILITY_USED_TWIRL = 0xC
};