use rst_core::map::{Map, MapNode}; /// Client map state wrapper /// /// The map state is calculated by the server and updates are streamed /// to all clients in a [Match](rst_core::Match). pub struct MapState { inner: Map, }