mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
23 lines
312 B
C
23 lines
312 B
C
#ifndef M_PRIVATE_H
|
|
#define M_PRIVATE_H
|
|
|
|
#include "types.h"
|
|
#include "libu64/gfxprint.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define PLAYER_NUM 4
|
|
|
|
extern s16 mPr_GetGoodsPower();
|
|
extern s16 mPr_GetMoneyPower();
|
|
|
|
extern void mPr_PrintMapInfo_debug(gfxprint_t* gfxprint);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|