47 lines
1.1 KiB
C
Executable file
47 lines
1.1 KiB
C
Executable file
const struct OamData gObjectEventBaseOam_8x8 = {
|
|
.shape = SPRITE_SHAPE(8x8),
|
|
.size = SPRITE_SIZE(8x8),
|
|
.priority = 2
|
|
};
|
|
|
|
const struct OamData gObjectEventBaseOam_16x8 = {
|
|
.shape = SPRITE_SHAPE(16x8),
|
|
.size = SPRITE_SIZE(16x8),
|
|
.priority = 2
|
|
};
|
|
|
|
const struct OamData gObjectEventBaseOam_16x16 = {
|
|
.shape = SPRITE_SHAPE(16x16),
|
|
.size = SPRITE_SIZE(16x16),
|
|
.priority = 2
|
|
};
|
|
|
|
const struct OamData gObjectEventBaseOam_32x8 = {
|
|
.shape = SPRITE_SHAPE(32x8),
|
|
.size = SPRITE_SIZE(32x8),
|
|
.priority = 2
|
|
};
|
|
|
|
const struct OamData gObjectEventBaseOam_64x32 = {
|
|
.shape = SPRITE_SHAPE(64x32),
|
|
.size = SPRITE_SIZE(64x32),
|
|
.priority = 2
|
|
};
|
|
|
|
const struct OamData gObjectEventBaseOam_16x32 = {
|
|
.shape = SPRITE_SHAPE(16x32),
|
|
.size = SPRITE_SIZE(16x32),
|
|
.priority = 2
|
|
};
|
|
|
|
const struct OamData gObjectEventBaseOam_32x32 = {
|
|
.shape = SPRITE_SHAPE(32x32),
|
|
.size = SPRITE_SIZE(32x32),
|
|
.priority = 2
|
|
};
|
|
|
|
const struct OamData gObjectEventBaseOam_64x64 = {
|
|
.shape = SPRITE_SHAPE(64x64),
|
|
.size = SPRITE_SIZE(64x64),
|
|
.priority = 2
|
|
};
|