Files
ac-decomp/include/m_prenmi.h
T
2023-05-30 10:33:42 -04:00

28 lines
391 B
C

#ifndef M_PRENMI_H
#define M_PRENMI_H
#include "types.h"
#include "game.h"
#ifdef __cplusplus
extern "C" {
#endif
#define PRENMI_TIMER 30
/* sizeof(struct game_prenmi_s) == 0xE8 */
typedef struct game_prenmi_s {
GAME game;
int timer;
u32 unused_pad;
} GAME_PRENMI;
extern void prenmi_init(GAME* game);
extern void prenmi_cleanup(GAME* game);
#ifdef __cplusplus
};
#endif
#endif