-
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
a9577f0
commit f487baa
Showing
6 changed files
with
106 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/** | ||
* @file suv.h | ||
* | ||
* @brief SUV vehicle (the van and other racecars). | ||
*/ | ||
#ifndef SUV_H | ||
#define SUV_H | ||
|
||
#include "common.h" | ||
|
||
// ... | ||
|
||
#endif // SUV_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,62 @@ | ||
#include <po.h> | ||
|
||
INCLUDE_ASM(const s32, "P2/po", InitPo__FP2PO); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", ClonePo__FP2POT0); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", HandlePoMessage__FP2PO5MSGIDPv); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", OnPoActive__FP2POiT0); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", GetPoCpdefi__FP2POfP6CPDEFI); | ||
INCLUDE_ASM(const s32, "P2/po", func_00192410); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", MakePoActive__FP2PO); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", FUN_00192450); | ||
INCLUDE_ASM(const s32, "P2/po", func_00192488); | ||
INCLUDE_ASM(const s32, "P2/po", func_00192490); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", FUN_00192498); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", CollectPoPrize__FP2PO3PCKP3ALO); | ||
INCLUDE_ASM(const s32, "P2/po", func_001925C0); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", PpoCur__Fv); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", PpoStart__Fv); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", _IppoFindPo__FP2PO); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", AddPoToList__FP2PO); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", RemovePoFromList__FP2PO); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", OnPoAdd__FP2PO); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", OnPoRemove__FP2PO); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", SwitchToIppo__Fi); | ||
INCLUDE_ASM(const s32, "P2/po", func_00192988); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", SetPoPlayable__FP2POi); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", SwitchToPo__FP2PO); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", PpziCur__Fv); | ||
INCLUDE_ASM(const s32, "P2/po", func_00192A28); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", PlayPoDialog__FP2POP6DIALOG); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", FUN_00192a70); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", UpdatePo__FP2POf); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", UsePoCharm__FP2PO); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", FUN_00192dd0); | ||
INCLUDE_ASM(const s32, "P2/po", func_001930B0); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", po__static_initialization_and_destruction_04); | ||
|
||
INCLUDE_ASM(const s32, "P2/po", _GLOBAL_$I$InitPo__FP2PO); |
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,4 +1,4 @@ | ||
#include "common.h" | ||
#include <suv.h> | ||
|
||
INCLUDE_ASM(const s32, "P2/suv", InitSuv__FP3SUV); | ||
|
||
|