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