-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathOverKartStruct.h
40 lines (30 loc) · 1.09 KB
/
OverKartStruct.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef OK64STRUCT_H_
#define OK64STRUCT_H_
typedef struct RaceOptions{
char GameMode, StatsMode, GPMode, CupMode, ItemMode, AIMode, ExploreMode, FlycamMode; //8
} RaceOptions;
typedef struct BattleOptions{
char GameMode, TeamBattle, Flycam, PAD2, PAD3, PAD4, PAD5, PAD6;
} BattleOptions;
typedef struct RenderOptions{
char AudioMode, ScreenMode, AliasMode, SplitMode, DrawMode, Platform, CullMode, DisplayFPS;
char InputMode, DetailMode, PAD2, PAD3, PAD4, PAD5, PAD6, PAD7;
} RenderOptions;
typedef struct LevelOptions{
char ScaleXMode, ScaleYMode, ScaleZMode, MirrorX, MirrorY, MirrorZ, PAD4, PAD5;
} LevelOptions;
typedef struct CheatOptions{
char CHEATA,CHEATB,CHEATC,CHEATD,CHEATE, CHEATF, CHEATG, CHEATH;
} CheatOptions;
typedef struct SaveData{
RaceOptions GameSettings;
RenderOptions RenderSettings;
BattleOptions BattleSettings;
LevelOptions LevelSettings;
bool TENNES;
char SaveVersion;
char Initial;
CheatOptions CheatSettings;
char PAD[449];
} SaveData;
#endif