mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
24 lines
378 B
C
24 lines
378 B
C
#ifndef SECOND_GAME_H
|
|
#define SECOND_GAME_H
|
|
|
|
#include "types.h"
|
|
#include "game.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* sizeof(struct second_game_s) == 0xE0 */
|
|
typedef struct second_game_s {
|
|
/* 0x00 */ GAME game;
|
|
} GAME_SECOND;
|
|
|
|
extern void second_game_init(GAME_SECOND second);
|
|
extern void second_game_cleanup(GAME_SECOND* second);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|