Matched game/board/star
This commit is contained in:
parent
2163064174
commit
27f79091cd
20 changed files with 861 additions and 26 deletions
|
|
@ -77,6 +77,8 @@ typedef void (*BoardCameraPosCalcFunc)(BoardCameraData *camera);
|
|||
typedef void (*BoardTurnStartHook)(s32 player, s32 space);
|
||||
|
||||
extern BoardTurnStartHook boardTurnStartFunc;
|
||||
extern void (*boardStarShowNextHook)(void);
|
||||
extern void (*boardStarGiveHook)(void);
|
||||
extern BoardFunc boardTurnFunc;
|
||||
extern BoardLightHook boardLightResetHook;
|
||||
extern BoardLightHook boardLightSetHook;
|
||||
|
|
|
|||
|
|
@ -35,6 +35,7 @@ s32 BoardModelExistCheck(s16 model, s32 arg1);
|
|||
s32 BoardModelExistDupe(s16 model, s32 arg1);
|
||||
s32 fn_8006DDE8(s16 model, float arg1);
|
||||
s32 BoardModelMotionCreate(s16 model, s32 data_num);
|
||||
s32 BoardModelMotionKill(s16 model, s32 motion);
|
||||
s32 BoardModelMotionStartEndSet(s16 model, s16 start, s16 end);
|
||||
s32 BoardModelMotionStart(s16 model, s32 slot, u32 attr);
|
||||
s32 BoardModelMotionShiftSet(s16 model, s32 motion, float time, float shift_time, u32 attr);
|
||||
|
|
|
|||
|
|
@ -53,4 +53,6 @@ s32 BoardSpaceStarCheck(s32 index);
|
|||
void BoardSpaceLandExec(s32 player, s32 space);
|
||||
void BoardSpaceBlockPosSet(void);
|
||||
|
||||
extern s16 boardSpaceStarTbl[8];
|
||||
|
||||
#endif
|
||||
|
|
|
|||
14
include/game/board/star.h
Executable file
14
include/game/board/star.h
Executable file
|
|
@ -0,0 +1,14 @@
|
|||
#ifndef _BOARD_START_H
|
||||
#define _BOARD_START_H
|
||||
|
||||
#include "game/board/space.h"
|
||||
|
||||
#include "dolphin.h"
|
||||
|
||||
void BoardStarHostSet(s16 arg0);
|
||||
s16 BoardStarHostMdlGet(void);
|
||||
void BoardStarExec(s32 arg0, BoardSpace *arg1);
|
||||
void BoardStarGive(s32 arg0, Vec *arg1);
|
||||
void BoardStarShowNext(s32 arg0);
|
||||
|
||||
#endif
|
||||
|
|
@ -28,6 +28,7 @@ void BoardPickerBackFlagSet(s32 arg0);
|
|||
BOOL BoardPickerDoneCheck(void);
|
||||
s32 BoardPickerPosGet(Vec *arg0);
|
||||
s32 BoardPickerChoiceGet(void);
|
||||
void BoardYourTurnExec(s32 arg0);
|
||||
s32 BoardItemUseExec(s32 arg0);
|
||||
void BoardMakeRandomItem(void);
|
||||
void BoardItemGetDestPos(s32 arg0, Vec *arg1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue