diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2017-06-17 21:01:53 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2017-06-17 21:01:53 -0400 |
commit | a5ec66b9851572e75f0b9aaf5c40f4de4d3b40e4 (patch) | |
tree | 24742c01a91fa76a32925e5fdb3e554ed555bd06 /include/data/base_oam.h | |
parent | 33520725b88621ace3c66da55b92f2a83ffb4545 (diff) |
Split field map object data into headers, using the original delineation as a guide
Diffstat (limited to 'include/data/base_oam.h')
-rwxr-xr-x | include/data/base_oam.h | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/include/data/base_oam.h b/include/data/base_oam.h new file mode 100755 index 000000000..8595f97e7 --- /dev/null +++ b/include/data/base_oam.h @@ -0,0 +1,56 @@ +// +// Created by scott on 6/17/2017. +// + +#ifndef POKERUBY_BASE_OAM_H +#define POKERUBY_BASE_OAM_H + +const struct OamData gFieldOamData_8x8 = { + .shape = 0, + .size = 0, + .priority = 2 +}; + +const struct OamData gFieldOamData_16x8 = { + .shape = 1, + .size = 0, + .priority = 2 +}; + +const struct OamData gFieldOamData_16x16 = { + .shape = 0, + .size = 1, + .priority = 2 +}; + +const struct OamData gFieldOamData_32x8 = { + .shape = 1, + .size = 1, + .priority = 2 +}; + +const struct OamData gFieldOamData_64x32 = { + .shape = 1, + .size = 3, + .priority = 2 +}; + +const struct OamData gFieldOamData_16x32 = { + .shape = 2, + .size = 2, + .priority = 2 +}; + +const struct OamData gFieldOamData_32x32 = { + .shape = 0, + .size = 2, + .priority = 2 +}; + +const struct OamData gFieldOamData_64x64 = { + .shape = 0, + .size = 3, + .priority = 2 +}; + +#endif //POKERUBY_BASE_OAM_H |