Files
banjo-kazooie/include/core2/abilityprogress.h
Moses Troyer c2dd933d22 All Changes
2025-08-16 17:15:49 +00:00

16 lines
407 B
C

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
};