This commit is contained in:
nora 2023-04-17 22:11:15 +02:00
parent 9f3d739e34
commit 635759d58a
2 changed files with 0 additions and 13 deletions

View file

@ -1,9 +1,7 @@
use command::CmdVec;
use debug::DebugState;
use egui_sfml::SfEgui;
use game::GameState;
mod command;
mod debug;
mod game;
mod tiles;
@ -14,7 +12,6 @@ pub(crate) struct App {
pub(crate) debug: DebugState,
/// Integer scale for rendering the game
pub(crate) scale: u8,
pub(crate) cmdvec: CmdVec,
}
impl App {
pub(crate) fn new() -> anyhow::Result<Self> {