aboutsummaryrefslogtreecommitdiff
path: root/games/rstnode/rst-client/src/state/map.rs
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,
}