veloren_common_state/
lib.rs

1//! This crate contains the [`State`] and shared between
2//! server (`veloren-server`) and the client (`veloren-client`)
3
4#[cfg(feature = "plugins")] pub mod plugin;
5mod special_areas;
6mod state;
7// TODO: breakup state module and remove glob
8pub use special_areas::*;
9pub use state::{BlockChange, BlockDiff, ScheduledBlockChange, State, TerrainChanges};