My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/games/rstnode/rst-client/src/state/map.rs

10 lines
231 B

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,
}