|
|
@@ -13,7 +13,7 @@ pub use error::Error; |
|
|
|
|
|
|
|
use debug::{Fleets as DebugFleets, Ships as DebugShips, Summary as DebugSummary}; |
|
|
|
use misc::{Events, TextManager, Window}; |
|
|
|
use render::{Asteroids, Init, Planets, SelectFleet, Ships}; |
|
|
|
use render::{Asteroids, FleetSelect, Init, Planets, Ships}; |
|
|
|
use resources::{Camera, Config, Geometry, InputState, PlayerState, Uniform}; |
|
|
|
use systems::{FleetInfoUpdate, StateUpdate}; |
|
|
|
|
|
|
@@ -52,7 +52,7 @@ impl<'a, 'b> App<'a, 'b> { |
|
|
|
.with_thread_local(Planets::new(world)?) |
|
|
|
.with_thread_local(Asteroids::new(world)?) |
|
|
|
.with_thread_local(Ships::new(world)?) |
|
|
|
.with_thread_local(SelectFleet::new(world, &text_manager)?) |
|
|
|
.with_thread_local(FleetSelect::new(world, &text_manager)?) |
|
|
|
.with_thread_local(DebugShips::default()) |
|
|
|
.with_thread_local(DebugFleets::new(&text_manager)?) |
|
|
|
.with_thread_local(DebugSummary::new(&text_manager)?) |
|
|
|