-
Notifications
You must be signed in to change notification settings - Fork 3
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
3d6f485
commit ed90c51
Showing
29 changed files
with
1,588 additions
and
30 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 |
---|---|---|
|
@@ -310,4 +310,4 @@ class KartBody | |
u8 mMTState; | ||
}; | ||
|
||
#endif | ||
#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
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,182 @@ | ||
#include "Yamamoto/KartAnime.h" | ||
|
||
#include "JSystem/JAudio/JASFakeMatch2.h" | ||
|
||
// comments inside functions are inline functions being called in that function | ||
|
||
bool KartAnime::IsAppeal(int) {} | ||
|
||
bool KartAnime::IsThrow(int) {} | ||
|
||
bool KartAnime::IsMove(int) {} | ||
|
||
bool KartAnime::IsSuspend(int) { | ||
// IsStart(); | ||
} | ||
|
||
bool KartAnime::IsDamage(int) {} | ||
|
||
bool KartAnime::IsDamageL(int) {} | ||
|
||
bool KartAnime::IsDamageS(int) {} | ||
|
||
bool KartAnime::IsRide(int) {} | ||
|
||
bool KartAnime::IsNormalStart(int) {} | ||
|
||
bool KartAnime::IsBackStart(int) {} | ||
|
||
bool KartAnime::IsRun(int) {} | ||
|
||
bool KartAnime::IsDrift(int) {} | ||
|
||
bool KartAnime::IsDriftStart(int) {} | ||
|
||
bool KartAnime::IsDriftLeft(int) {} | ||
|
||
bool KartAnime::IsDriftRight(int) {} | ||
|
||
bool KartAnime::IsChange(int) {} | ||
|
||
bool KartAnime::IsRocket(int) {} | ||
|
||
bool KartAnime::IsJump(int) {} | ||
|
||
bool KartAnime::IsSit(int) {} | ||
|
||
bool KartAnime::IsBackAnime(int) {} | ||
|
||
bool KartAnime::IsFloatAnime(int) {} | ||
|
||
bool KartAnime::IsDangerAnime(int) {} | ||
|
||
bool KartAnime::IsDangerLoopAnime(int) {} | ||
|
||
bool KartAnime::IsDangerPlusAnime(int) {} | ||
|
||
bool KartAnime::IsGetItemAnime(int) {} | ||
|
||
bool KartAnime::IsBurnAnime(int) {} | ||
|
||
bool KartAnime::IsDrive(int) {} | ||
|
||
bool KartAnime::IsBack(int) {} | ||
|
||
bool KartAnime::IsGaol(int) {} | ||
|
||
bool KartAnime::IsAttack(int) {} | ||
|
||
bool KartAnime::IsProhibition(int) {} | ||
|
||
void KartAnime::MakeThrowAnime(int, int, int) {} | ||
|
||
void KartAnime::MakeBackAnime(int) {} | ||
|
||
void KartAnime::MakeFrontAnime(int) {} | ||
|
||
void KartAnime::Init() {} | ||
|
||
void KartAnime::DoGetAnime(int) { | ||
//void ItemObj::clrTransferPartner() {} | ||
//void ItemObj::tstTransferPartner() const {} | ||
} | ||
|
||
void KartAnime::DoBackAnime(int) { | ||
//void DriverModel::TurnBack() {} | ||
} | ||
|
||
void KartAnime::DoFrontAnime(int) {} | ||
|
||
void KartAnime::DoChangeAnime(int) {} | ||
|
||
void KartAnime::DoDriveAnime(int) {} | ||
|
||
void KartAnime::DoStartRunStartAnime(int) {} | ||
|
||
void KartAnime::DoStartRunEndAnime(int) { | ||
//void DriverModel::BacktoDWait() {} | ||
} | ||
|
||
void KartAnime::DoDriverThrowAnime(int) {} | ||
|
||
void KartAnime::DoDriverDamageAnime(int) {} | ||
|
||
void KartAnime::DoDriverDriveAnime(int) {} | ||
|
||
void KartAnime::DoThrowAnime(int) {} | ||
|
||
void KartAnime::DoDriftAnime(int) {} | ||
|
||
void KartAnime::DoDriftEndAnime(int) {} | ||
|
||
void KartAnime::DoSlideAnime(int) {} | ||
|
||
void KartAnime::DoJumpAnime(int) {} | ||
|
||
void KartAnime::DoCrouchAnime(int) {} | ||
|
||
void KartAnime::DoStandAnime(int) {} | ||
|
||
void KartAnime::DoPushStartAnime(int) {} | ||
|
||
void KartAnime::DoNormalStartAnime(int) { | ||
//void DriverModel::StartNormalStart() {} | ||
} | ||
|
||
void KartAnime::DoRocketStartAnime(int) { | ||
//void DriverModel::StartRocketStart() {} | ||
} | ||
|
||
void KartAnime::DoFalseStartAnime(int) { | ||
//void DriverModel::StartRocketStartFailure() {} | ||
} | ||
|
||
void KartAnime::DoDamageStartAnime(int) {} | ||
|
||
void KartAnime::DoDamageEndAnime(int) {} | ||
|
||
void KartAnime::DoBigDamageStartAnime(int) {} | ||
|
||
void KartAnime::DoBigDamageEndAnime(int) {} | ||
|
||
void KartAnime::DoBurnStartAnime(int) {} | ||
|
||
void KartAnime::DoBurnEndAnime(int) {} | ||
|
||
void KartAnime::DoFloatStartAnime(int) {} | ||
|
||
void KartAnime::DoHangStartAnime(int) {} | ||
|
||
void KartAnime::DoGoalStartAnime(int) {} | ||
|
||
void KartAnime::DoStaffAnime(int) {} | ||
|
||
void KartAnime::DoHappyAnime(int) {} | ||
|
||
void KartAnime::DoWinAnime(int) {} | ||
|
||
void KartAnime::DoDefeatAnime(int) {} | ||
|
||
void KartAnime::DoFloatEndAnime(int) {} | ||
|
||
void KartAnime::DoSurpriseAnime(int) {} | ||
|
||
void KartAnime::DoSurpriseEndAnime(int) {} | ||
|
||
void KartAnime::DoHangJumpStartAnime(int) {} | ||
|
||
void KartAnime::DoHangJumpEndAnime(int) {} | ||
|
||
void KartAnime::DoAppealAnime(int) {} | ||
|
||
void KartAnime::DoStopAnime(int) { | ||
//void DriverModel::SetFreeze() {} | ||
} | ||
|
||
void KartAnime::DoReStopAnime(int) { | ||
//void DriverModel::ResetFreeze() {} | ||
} | ||
|
||
void KartAnime::DoCheck(int) {} | ||
|
||
void KartAnime::DoAnime(int) {} |
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 |
---|---|---|
|
@@ -7,4 +7,4 @@ void KartAppendix::Init(int idx) { | |
{ | ||
mModelWheel = mKartLoader->getExModelWheel(idx + 4); | ||
} | ||
} | ||
} |
Oops, something went wrong.