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