This commit is contained in:
nora 2023-04-18 21:36:31 +02:00
parent 6d46f23233
commit cc39bd4d99
5 changed files with 4462 additions and 3 deletions

1230
dep_graph.dot Normal file

File diff suppressed because it is too large Load diff

1021
dep_graph.txt Normal file

File diff suppressed because it is too large Load diff

1208
dep_graph1.dot Normal file

File diff suppressed because it is too large Load diff

1002
dep_graph1.txt Normal file

File diff suppressed because it is too large Load diff

View file

@ -4,15 +4,13 @@ pub struct TileDef {
pub blend_graphic: String,
}
use egui_inspect_derive::expand;
pub(crate) struct GameState {
pub(crate) tile_db: TileDb,
}
impl GameState {
fn inspect_mut(&mut self) {
expand! {}
egui_inspect_derive::expand! {}
}
}