tavern_keeper/src/state.rs

4 lines
71 B
Rust
Raw Normal View History

2022-12-30 20:30:12 +00:00
use crate::world::World;
pub struct GameState {
pub world: World,
}