aboutsummaryrefslogtreecommitdiff
path: root/games/rstnode/rst-client/src/state/map.rs
blob: 1c4666da6b4f43aab21f2581c01e44321b3f94b4 (plain)
1
2
3
4
5
6
7
8
9
10
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,
}