18 lines
369 B
C
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
|