blob: 3d6a52445f81578b8f9c55ec57894dfba0040ce0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef TITLE_SETUP_STATE_H
#define TITLE_SETUP_STATE_H
#include "game.h"
#include "view.h"
typedef struct TitleSetupState {
/* 0x0000 */ GameState state;
/* 0x00A8 */ View view;
} TitleSetupState; // size = 0x1D0
void TitleSetup_Init(GameState* thisx);
void TitleSetup_Destroy(GameState* thisx);
#endif
|