This commit is contained in:
nora 2023-04-17 22:06:22 +02:00
parent fde86cfb91
commit e3ab4abc20
3 changed files with 1 additions and 7 deletions

View file

@ -1,4 +1,4 @@
use crate::{command::CmdVec, game::GameState, res::Res};
use crate::{command::CmdVec, game::GameState};
use egui_inspect::{derive::Inspect, inspect};
#[derive(Default, Debug, Inspect)]
pub(crate) struct DebugState {}

View file

@ -2,19 +2,16 @@ use command::CmdVec;
use debug::DebugState;
use egui_sfml::SfEgui;
use game::GameState;
use res::Res;
mod command;
mod debug;
mod game;
mod math;
mod res;
mod texture_atlas;
mod tiles;
pub(crate) struct App {
pub(crate) game: GameState,
pub(crate) res: Res,
pub(crate) sf_egui: SfEgui,
pub(crate) debug: DebugState,
/// Integer scale for rendering the game

View file

@ -1,3 +0,0 @@
#[derive(Debug)]
pub(crate) struct Res {}