summaryrefslogtreecommitdiff
path: root/include/z_title_setup.h
blob: 1bd7c7d7d9d61db2cb7c95a8398286c713da1430 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef Z64TITLE_SETUP_H
#define Z64TITLE_SETUP_H

#include "z64game.h"

typedef struct {
    /* 0x00 */ GameState state;
} SetupState; // size = 0xA4

void Setup_Destroy(GameState* gameState);
void Setup_Init(GameState* thisx);

#endif