boo_house.c completed, 59.45% DOL

This commit is contained in:
CreateSource 2024-03-12 22:49:36 -04:00
parent c1fa0f8873
commit dca93f5585
5 changed files with 856 additions and 5 deletions

View file

@ -0,0 +1,15 @@
#ifndef BOO_HOUSE_H
#define BOO_HOUSE_H
#include "dolphin/types.h"
void BoardBooHouseHostSet(s16);
s16 BoardBooHouseHostGet(void);
void BoardBooHouseCreate(void);
void BoardBooHouseExec(s32);
s32 BoardBooComUseCheck(s32);
void BoardBooHouseTutorialExec(void);
#endif

View file

@ -0,0 +1,12 @@
#ifndef _MG_SETUP_H
#define _MG_SETUP_H
#include "dolphin/types.h"
void BoardMGSetupExec(void);
void BoardMGSetupPlayClear(void);
s32 BoardMGSetupPlaySearch(s32, s16);
void BoardMGSetupPlayPush(s32, s16);
void BoardMGSetupTutorialExec(void);
#endif