mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
26 lines
396 B
C
26 lines
396 B
C
#ifndef M_PLAY_H
|
|
#define M_PLAY_H
|
|
|
|
#include "types.h"
|
|
#include "game.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* sizeof(struct game_play_s) == 0x2600 */
|
|
typedef struct game_play_s {
|
|
/* 0x0000 */ GAME game;
|
|
// TODO: finish
|
|
/* 0x00E0 */ u8 _temp[0x2520];
|
|
} GAME_PLAY;
|
|
|
|
extern void play_init(GAME_PLAY* play);
|
|
extern void play_cleanup(GAME_PLAY* play);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|