Merge branch 'Rainchus:main' into main

This commit is contained in:
gamemasterplc 2024-03-12 21:56:04 -05:00 committed by GitHub
commit 4fb827c325
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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