mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-19 13:37:22 -05:00
15 lines
323 B
C
15 lines
323 B
C
#ifndef POKEPLATINUM_STRUCT_DEFS_OPTIONS_H
|
|
#define POKEPLATINUM_STRUCT_DEFS_OPTIONS_H
|
|
|
|
typedef struct Options {
|
|
u16 textSpeed : 4;
|
|
u16 soundMethod : 2;
|
|
u16 battleStyle : 1;
|
|
u16 battleScene : 1;
|
|
u16 buttonMode : 2;
|
|
u16 frame : 5;
|
|
u16 : 1;
|
|
} Options;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_DEFS_OPTIONS_H
|