diff options
author | Revo <projectrevotpp@hotmail.com> | 2020-06-25 13:29:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 13:29:06 -0400 |
commit | 80ce402f5f541f01d7ded6da60e38eebbf1f9f88 (patch) | |
tree | 4b6c5870add11dbe2910e4a27d56d902239cd7ed /include/options.h | |
parent | 40c3f6e85a2d25d3d98b2cfdaf1dd6872bbb4a6d (diff) | |
parent | f61b7cc024fd9be692960ee284bb078fb5f1f125 (diff) |
Merge pull request #190 from PikalaxALT/pikalax_work
sound.c
Diffstat (limited to 'include/options.h')
-rw-r--r-- | include/options.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/options.h b/include/options.h new file mode 100644 index 00000000..730cbaa5 --- /dev/null +++ b/include/options.h @@ -0,0 +1,15 @@ +#ifndef POKEDIAMOND_OPTIONS_H +#define POKEDIAMOND_OPTIONS_H + +#include "main.h" + +struct Options { + u16 unk0_0:4; + u16 unk0_4:2; + u16 unk0_6:10; + u8 padding[2]; // TODO: finish me +}; + +struct Options * LoadPlayerDataAddress(struct UnkStruct_021C59C8 *); + +#endif //POKEDIAMOND_OPTIONS_H |