mirror of
https://github.com/encounter/ac-decomp.git
synced 2026-03-30 10:57:04 -07:00
24 lines
361 B
C
24 lines
361 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* game);
|
|
extern void second_game_cleanup(GAME* game);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|