marioparty4/include/game/board/basic_space.h
2024-01-01 18:06:15 -05:00

18 lines
369 B
C

#ifndef _BOARD_BASIC_SPACE_H
#define _BOARD_BASIC_SPACE_H
#include "common.h"
#include "math.h"
#include "game/process.h"
#include "game/audio.h"
#include "game/object.h"
extern Process *boardObjMan;
void BoardEventLandBlue(s32, s16);
void BoardEventLandRed(s32, s16);
s8 BoardCoinChgCreate(Vec*, s8);
s32 BoardCoinChgExist(s32);
void BoardCoinChgHide(s32);
#endif