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

#include "game.h"

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

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

#endif