You've already forked ultrasm64-2
mirror of
https://github.com/HackerN64/ultrasm64-2.git
synced 2026-01-21 10:38:08 -08:00
Refresh 1
This commit is contained in:
@@ -1,44 +1,45 @@
|
||||
#ifndef _SEQ_IDS_H
|
||||
#define _SEQ_IDS_H
|
||||
#ifndef SEQ_IDS_H
|
||||
#define SEQ_IDS_H
|
||||
|
||||
#define SEQ_VARIATION 0x80
|
||||
#define SEQ_VARIATION 0x80
|
||||
|
||||
#define SEQ_SOUND_PLAYER 0x0000
|
||||
#define SEQ_EVENT_CUTSCENE_COLLECT_STAR 0x0001
|
||||
#define SEQ_MENU_TITLE_SCREEN 0x0002
|
||||
#define SEQ_LEVEL_GRASS 0x0003
|
||||
#define SEQ_LEVEL_INSIDE_CASTLE 0x0004
|
||||
#define SEQ_LEVEL_WATER 0x0005
|
||||
#define SEQ_LEVEL_HOT 0x0006
|
||||
#define SEQ_LEVEL_BOSS_KOOPA 0x0007
|
||||
#define SEQ_LEVEL_SNOW 0x0008
|
||||
#define SEQ_LEVEL_SLIDE 0x0009
|
||||
#define SEQ_LEVEL_SPOOKY 0x000A
|
||||
#define SEQ_EVENT_PIRANHA_PLANT 0x000B
|
||||
#define SEQ_LEVEL_UNDERGROUND 0x000C
|
||||
#define SEQ_MENU_STAR_SELECT 0x000D
|
||||
#define SEQ_EVENT_POWERUP 0x000E
|
||||
#define SEQ_EVENT_METAL_CAP 0x000F
|
||||
#define SEQ_EVENT_KOOPA_MESSAGE 0x0010
|
||||
#define SEQ_LEVEL_KOOPA_ROAD 0x0011
|
||||
#define SEQ_EVENT_HIGH_SCORE 0x0012
|
||||
#define SEQ_EVENT_MERRY_GO_ROUND 0x0013
|
||||
#define SEQ_EVENT_RACE 0x0014
|
||||
#define SEQ_EVENT_CUTSCENE_STAR_SPAWN 0x0015
|
||||
#define SEQ_EVENT_BOSS 0x0016
|
||||
#define SEQ_EVENT_CUTSCENE_COLLECT_KEY 0x0017
|
||||
#define SEQ_EVENT_ENDLESS_STAIRS 0x0018
|
||||
#define SEQ_LEVEL_BOSS_KOOPA_FINAL 0x0019
|
||||
#define SEQ_EVENT_CUTSCENE_CREDITS 0x001A
|
||||
#define SEQ_EVENT_SOLVE_PUZZLE 0x001B
|
||||
#define SEQ_EVENT_TOAD_MESSAGE 0x001C
|
||||
#define SEQ_EVENT_PEACH_MESSAGE 0x001D
|
||||
#define SEQ_EVENT_CUTSCENE_INTRO 0x001E
|
||||
#define SEQ_EVENT_CUTSCENE_VICTORY 0x001F
|
||||
#define SEQ_EVENT_CUTSCENE_ENDING 0x0020
|
||||
#define SEQ_MENU_FILE_SELECT 0x0021
|
||||
#ifndef VERSION_JP
|
||||
#define SEQ_EVENT_CUTSCENE_LAKITU 0x0022
|
||||
#endif
|
||||
enum SeqId {
|
||||
SEQ_SOUND_PLAYER, // 0x00
|
||||
SEQ_EVENT_CUTSCENE_COLLECT_STAR, // 0x01
|
||||
SEQ_MENU_TITLE_SCREEN, // 0x02
|
||||
SEQ_LEVEL_GRASS, // 0x03
|
||||
SEQ_LEVEL_INSIDE_CASTLE, // 0x04
|
||||
SEQ_LEVEL_WATER, // 0x05
|
||||
SEQ_LEVEL_HOT, // 0x06
|
||||
SEQ_LEVEL_BOSS_KOOPA, // 0x07
|
||||
SEQ_LEVEL_SNOW, // 0x08
|
||||
SEQ_LEVEL_SLIDE, // 0x09
|
||||
SEQ_LEVEL_SPOOKY, // 0x0A
|
||||
SEQ_EVENT_PIRANHA_PLANT, // 0x0B
|
||||
SEQ_LEVEL_UNDERGROUND, // 0x0C
|
||||
SEQ_MENU_STAR_SELECT, // 0x0D
|
||||
SEQ_EVENT_POWERUP, // 0x0E
|
||||
SEQ_EVENT_METAL_CAP, // 0x0F
|
||||
SEQ_EVENT_KOOPA_MESSAGE, // 0x10
|
||||
SEQ_LEVEL_KOOPA_ROAD, // 0x11
|
||||
SEQ_EVENT_HIGH_SCORE, // 0x12
|
||||
SEQ_EVENT_MERRY_GO_ROUND, // 0x13
|
||||
SEQ_EVENT_RACE, // 0x14
|
||||
SEQ_EVENT_CUTSCENE_STAR_SPAWN, // 0x15
|
||||
SEQ_EVENT_BOSS, // 0x16
|
||||
SEQ_EVENT_CUTSCENE_COLLECT_KEY, // 0x17
|
||||
SEQ_EVENT_ENDLESS_STAIRS, // 0x18
|
||||
SEQ_LEVEL_BOSS_KOOPA_FINAL, // 0x19
|
||||
SEQ_EVENT_CUTSCENE_CREDITS, // 0x1A
|
||||
SEQ_EVENT_SOLVE_PUZZLE, // 0x1B
|
||||
SEQ_EVENT_TOAD_MESSAGE, // 0x1C
|
||||
SEQ_EVENT_PEACH_MESSAGE, // 0x1D
|
||||
SEQ_EVENT_CUTSCENE_INTRO, // 0x1E
|
||||
SEQ_EVENT_CUTSCENE_VICTORY, // 0x1F
|
||||
SEQ_EVENT_CUTSCENE_ENDING, // 0x20
|
||||
SEQ_MENU_FILE_SELECT, // 0x21
|
||||
SEQ_EVENT_CUTSCENE_LAKITU, // 0x22 (not in JP)
|
||||
SEQ_COUNT
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user