You've already forked 2ship2harkinian-Android
mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-03-10 11:20:47 -07:00
14 lines
237 B
C
14 lines
237 B
C
#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
|