Add some world defs

This commit is contained in:
crumblingstatue 2023-04-01 20:12:09 +02:00
parent 608f8f9f9f
commit d78726eb5b
6 changed files with 61 additions and 0 deletions

16
src/game.rs Normal file
View file

@ -0,0 +1,16 @@
use crate::{math::WorldPos, world::World};
pub struct GameState {
transient: TransientGameState,
persistent: PersistentGameState,
}
/// Transient game state, not saved to disk
pub struct TransientGameState {
camera_offset: WorldPos,
}
/// Persistent game state, saved to disk
pub struct PersistentGameState {
world: World,
}