mirror of
https://github.com/Noratrieb/game-wip-dontplay.git
synced 2026-01-17 04:45:02 +01:00
more
This commit is contained in:
parent
fde86cfb91
commit
e3ab4abc20
3 changed files with 1 additions and 7 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
use crate::{command::CmdVec, game::GameState, res::Res};
|
use crate::{command::CmdVec, game::GameState};
|
||||||
use egui_inspect::{derive::Inspect, inspect};
|
use egui_inspect::{derive::Inspect, inspect};
|
||||||
#[derive(Default, Debug, Inspect)]
|
#[derive(Default, Debug, Inspect)]
|
||||||
pub(crate) struct DebugState {}
|
pub(crate) struct DebugState {}
|
||||||
|
|
|
||||||
|
|
@ -2,19 +2,16 @@ use command::CmdVec;
|
||||||
use debug::DebugState;
|
use debug::DebugState;
|
||||||
use egui_sfml::SfEgui;
|
use egui_sfml::SfEgui;
|
||||||
use game::GameState;
|
use game::GameState;
|
||||||
use res::Res;
|
|
||||||
|
|
||||||
mod command;
|
mod command;
|
||||||
mod debug;
|
mod debug;
|
||||||
mod game;
|
mod game;
|
||||||
mod math;
|
mod math;
|
||||||
mod res;
|
|
||||||
mod texture_atlas;
|
mod texture_atlas;
|
||||||
mod tiles;
|
mod tiles;
|
||||||
|
|
||||||
pub(crate) struct App {
|
pub(crate) struct App {
|
||||||
pub(crate) game: GameState,
|
pub(crate) game: GameState,
|
||||||
pub(crate) res: Res,
|
|
||||||
pub(crate) sf_egui: SfEgui,
|
pub(crate) sf_egui: SfEgui,
|
||||||
pub(crate) debug: DebugState,
|
pub(crate) debug: DebugState,
|
||||||
/// Integer scale for rendering the game
|
/// Integer scale for rendering the game
|
||||||
|
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
|
|
||||||
#[derive(Debug)]
|
|
||||||
pub(crate) struct Res {}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue