mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-06-02 01:30:03 -04:00
26 lines
377 B
C
26 lines
377 B
C
#ifndef M_PRENMI_H
|
|
#define M_PRENMI_H
|
|
|
|
#include "types.h"
|
|
#include "game.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* sizeof(struct game_prenmi_s) == 0xE8 */
|
|
typedef struct game_prenmi_s {
|
|
GAME game;
|
|
u32 timer;
|
|
u32 pad;
|
|
} GAME_PRENMI;
|
|
|
|
extern void prenmi_init(GAME_PRENMI* prenmi);
|
|
extern void prenmi_cleanup(GAME_PRENMI* prenmi);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif
|