forked from DizzyEggg/pokeemerald
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Showing
1,639 changed files
with
31,563 additions
and
34,793 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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
gBattlerControllerFuncs | ||
gBattleControllerData | ||
gBattlerControllerEndFuncs |
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,2 +1,3 @@ | ||
.include "constants/gba_constants.inc" | ||
.include "constants/global.inc" | ||
.include "constants/tms_hms.inc" |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#ifndef GUARD_CONSTANTS_TMS_HMS_INC | ||
#define GUARD_CONSTANTS_TMS_HMS_INC | ||
|
||
#include "constants/tms_hms.h" | ||
|
||
/* Expands to: | ||
* enum_start ITEM_TM01 | ||
* enum ITEM_TM_FOCUS_PUNCH | ||
* ... | ||
* enum_start ITEM_HM01 | ||
* enum ITEM_HM_CUT | ||
* ... */ | ||
#define EQUIV_TM(id) enum ITEM_TM_ ## id; | ||
#define EQUIV_HM(id) enum ITEM_HM_ ## id; | ||
enum_start ITEM_TM01 | ||
FOREACH_TM(EQUIV_TM) | ||
enum_start ITEM_HM01 | ||
FOREACH_HM(EQUIV_HM) | ||
#undef EQUIV_TM | ||
#undef EQUIV_HM | ||
|
||
#endif @ GUARD_CONSTANTS_TMS_HMS_INC |
Oops, something went wrong.