Skip to content

Commit

Permalink
Move window to initializations
Browse files Browse the repository at this point in the history
  • Loading branch information
ryankopf committed Aug 8, 2023
1 parent e4c5915 commit 18caba0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/initializations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ pub use biome::*;
pub mod load;
pub use load::*;
pub mod map;
pub use map::*;
pub use map::*;
pub mod window_system;
pub use window_system::*;
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use super::prelude::*;
use crate::prelude::*;
use bevy::window::PrimaryWindow;
use bevy::winit::WinitWindows;

Expand Down
2 changes: 0 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ mod thinking_system;
use thinking_system::*;
mod unitgenerator_system;
use unitgenerator_system::*;
mod window_system;
use window_system::*;

fn main() {
//println!("Hello, world!");
Expand Down

0 comments on commit 18caba0

Please sign in to comment.