summaryrefslogtreecommitdiff
path: root/include/data/field_map_obj/base_oam.h
diff options
context:
space:
mode:
authorProjectRevoTPP <projectrevotpp@hotmail.com>2017-06-25 20:12:52 -0400
committerProjectRevoTPP <projectrevotpp@hotmail.com>2017-06-25 20:12:52 -0400
commitf85513f76999c79c6355711fcefaf058d02c7c46 (patch)
treead60d6edad654974f1ef82538da0a402abd69903 /include/data/field_map_obj/base_oam.h
parent637774362fdbedd8a54b651e6196a1e1a4f4c093 (diff)
parent06b6cada0ddedc62063171703ba6607019751a9a (diff)
Merge branch 'master' of https://github.com/pret/pokeruby into sound_check_menu
Diffstat (limited to 'include/data/field_map_obj/base_oam.h')
-rwxr-xr-xinclude/data/field_map_obj/base_oam.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/include/data/field_map_obj/base_oam.h b/include/data/field_map_obj/base_oam.h
new file mode 100755
index 000000000..8595f97e7
--- /dev/null
+++ b/include/data/field_map_obj/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