mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
26 lines
485 B
C
26 lines
485 B
C
#ifndef M_CARD_H
|
|
#define M_CARD_H
|
|
|
|
#include "types.h"
|
|
#include "libu64/gfxprint.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern u8 mCD_GetThisLandSlotNo_code(int* player_no, int* slot_card_results);
|
|
extern void mCD_save_data_aram_malloc();
|
|
extern void mCD_set_aram_save_data();
|
|
extern void mCD_init_card();
|
|
|
|
extern void mCD_PrintErrInfo(gfxprint_t* gfxprint);
|
|
extern void mCD_InitAll();
|
|
extern void mCD_LoadLand();
|
|
extern void mCD_toNextLand();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|