Console, experimental tile graphic for continuous tiles

This commit is contained in:
crumblingstatue 2023-04-16 01:03:12 +02:00
parent 8ee0c9d535
commit 4dfb0ff7d7
12 changed files with 201 additions and 23 deletions

View file

@ -38,6 +38,7 @@ pub struct GameState {
pub inventory: Inventory,
pub itemdb: ItemDb,
pub selected_inv_slot: usize,
pub spawn_point: WorldPos,
}
#[derive(Debug, Inspect)]
@ -182,6 +183,7 @@ impl GameState {
inventory: Inventory::new_debug(),
itemdb: ItemDb::default(),
selected_inv_slot: 0,
spawn_point,
}
}
}