-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
02bbe55
commit 326cccc
Showing
160 changed files
with
354 additions
and
181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,4 @@ | ||
#ifndef GUARD_CONSTANTS_GAME_MODE_H | ||
#define GUARD_CONSTANTS_GAME_MODE_H | ||
|
||
#define GAME_MODE_SINGLE_PLAYER 0 | ||
#define GAME_MODE_TIME_ATTACK 1 | ||
#define GAME_MODE_BOSS_TIME_ATTACK 2 | ||
|
||
#define GAME_MODE_MULTI_PLAYER 3 | ||
#define GAME_MODE_TEAM_PLAY 4 | ||
#define GAME_MODE_MULTI_PLAYER_COLLECT_RINGS 5 | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#ifndef GUARD_BOSSES_FINAL_INTRO_h | ||
#define GUARD_BOSSES_FINAL_INTRO_h | ||
|
||
#include "global.h" | ||
|
||
void CreateTrueArea53Intro(void); | ||
|
||
#endif // GUARD_BOSSES_FINAL_INTRO_h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
#ifndef GUARD_BRAKE_DUST_CLOUD_H | ||
#define GUARD_BRAKE_DUST_CLOUD_H | ||
|
||
extern struct Task *CreateBrakingDustEffect(s32, s32); | ||
extern void sub_801F754(void); | ||
#include "core.h" | ||
|
||
struct Task *CreateBrakingDustEffect(s32, s32); | ||
void sub_801F754(void); | ||
|
||
typedef struct { | ||
s8 unk0; | ||
u8 filler1[3]; | ||
struct Task *t; | ||
} UNK_30059D0; | ||
|
||
extern UNK_30059D0 gUnknown_030059D0; | ||
|
||
#endif // GUARD_BRAKE_DUST_CLOUD_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
#ifndef GUARD_MULTIPLAYER_FINISH_H | ||
#define GUARD_MULTIPLAYER_FINISH_H | ||
|
||
extern void sub_8019CCC(u8 sioId, u8 count); | ||
#include "global.h" | ||
|
||
void sub_8019CCC(u8 sioId, u8 count); | ||
void sub_8019F08(void); | ||
|
||
#endif // GUARD_MULTIPLAYER_FINISH_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
|
||
#ifndef GUARD_MULTIPLAYER_PLAYER_UNK_2_H | ||
#define GUARD_MULTIPLAYER_PLAYER_UNK_2_H | ||
|
||
#include "global.h" | ||
|
||
// Copies of BG control regs for Multiplayer(?) | ||
typedef struct { | ||
u16 unk0; | ||
u16 unk2; | ||
u16 unk4; | ||
u16 unk6; | ||
} MultiPlayerBgCtrlRegs; /* size: 8 */ | ||
extern MultiPlayerBgCtrlRegs *gUnknown_03005840; | ||
|
||
#endif // GUARD_MULTIPLAYER_PLAYER_UNK_2_H |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.