veloren/common/state/src/lib.rs

10 lines
332 B
Rust
Raw Normal View History

//! This crate contains the [`State`] and shared between
//! server (`veloren-server`) and the client (`veloren-client`)
#[cfg(feature = "plugins")] pub mod plugin;
2023-05-15 22:40:53 +00:00
mod special_areas;
mod state;
// TODO: breakup state module and remove glob
2023-05-15 22:40:53 +00:00
pub use special_areas::*;
2023-04-10 16:59:43 +00:00
pub use state::{BlockChange, BlockDiff, State, TerrainChanges};