Matched game/board/battle

This commit is contained in:
mrshigure 2024-03-07 07:00:04 -08:00
parent 71a8dcf814
commit 9c5b9da592
8 changed files with 891 additions and 81 deletions

View file

@ -32,7 +32,6 @@ s32 BoardCameraRotGet(Vec*);
s32 BoardIsKill(void);
void BoardBowserExec(s32 player, s32 space);
void BoardBattleExec(s32 player, s32 space);
void BoardFortuneExec(s32 player, s32 space);
#endif

8
include/game/board/battle.h Executable file
View file

@ -0,0 +1,8 @@
#ifndef _BOARD_BATTLE_H
#define _BOARD_BATTLE_H
#include "dolphin/types.h"
void BoardBattleExec(s32 player, s32 space);
#endif