mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
Fix hat chooses the wizard
This commit is contained in:
parent
742231fbc5
commit
a35119fdbd
|
@ -2,11 +2,8 @@
|
||||||
#![no_main]
|
#![no_main]
|
||||||
|
|
||||||
use agb::{
|
use agb::{
|
||||||
display::{
|
display::tiled::{TileFormat, TileSet},
|
||||||
background::{TileFormat, TileSet, TileSetting},
|
display::{background::TileSetting, object::ObjectStandard, HEIGHT, WIDTH},
|
||||||
object::ObjectStandard,
|
|
||||||
HEIGHT, WIDTH,
|
|
||||||
},
|
|
||||||
input::Button,
|
input::Button,
|
||||||
};
|
};
|
||||||
use core::convert::TryInto;
|
use core::convert::TryInto;
|
||||||
|
|
|
@ -5,7 +5,7 @@ use video::Video;
|
||||||
|
|
||||||
use self::object::ObjectControl;
|
use self::object::ObjectControl;
|
||||||
|
|
||||||
mod tiled;
|
pub mod tiled;
|
||||||
|
|
||||||
/// Graphics mode 0. Four regular backgrounds.
|
/// Graphics mode 0. Four regular backgrounds.
|
||||||
pub mod background;
|
pub mod background;
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
use agb::display::{
|
use agb::display::{
|
||||||
background::{RegularMap, TileSetReference, TileSetting, VRamManager},
|
background::{RegularMap, TileSetting, VRamManager},
|
||||||
|
tiled::TileSetReference,
|
||||||
HEIGHT, WIDTH,
|
HEIGHT, WIDTH,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -5,10 +5,9 @@ extern crate alloc;
|
||||||
|
|
||||||
use agb::{
|
use agb::{
|
||||||
display::{
|
display::{
|
||||||
background::{
|
background::{InfiniteScrolledMap, PartialUpdateStatus, TileSetting, VRamManager},
|
||||||
InfiniteScrolledMap, PartialUpdateStatus, TileFormat, TileSet, TileSetting, VRamManager,
|
|
||||||
},
|
|
||||||
object::{ObjectControl, ObjectStandard, Size},
|
object::{ObjectControl, ObjectStandard, Size},
|
||||||
|
tiled::{TileFormat, TileSet},
|
||||||
Priority, HEIGHT, WIDTH,
|
Priority, HEIGHT, WIDTH,
|
||||||
},
|
},
|
||||||
fixnum::{FixedNum, Vector2D},
|
fixnum::{FixedNum, Vector2D},
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
use super::sfx::MusicBox;
|
use super::sfx::MusicBox;
|
||||||
use agb::{
|
use agb::{
|
||||||
display::background::{RegularMap, TileFormat, TileSet, TileSetting, VRamManager},
|
display::{
|
||||||
|
background::{RegularMap, TileSetting, VRamManager},
|
||||||
|
tiled::{TileFormat, TileSet},
|
||||||
|
},
|
||||||
sound::mixer::Mixer,
|
sound::mixer::Mixer,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue