Skip to content

Commit

Permalink
main_menu.rs: Unify ui::Gui path
Browse files Browse the repository at this point in the history
  • Loading branch information
ozkriff committed Jun 9, 2023
1 parent c3c4eb9 commit ffd651f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/screen/main_menu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::{

use log::trace;
use mq::math::Vec2;
use ui::{self, Gui, Widget};
use ui::{self, Widget};

use crate::{
assets,
Expand Down Expand Up @@ -52,7 +52,7 @@ fn make_gui() -> ZResult<ui::Gui<Message>> {

#[derive(Debug)]
pub struct MainMenu {
gui: Gui<Message>,
gui: ui::Gui<Message>,
receiver_battle_result: Option<Receiver<Option<state::BattleResult>>>,
}

Expand Down

0 comments on commit ffd651f

Please sign in to comment.