mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
1af4a04231
This reverts merge request !2172
10 lines
344 B
Rust
10 lines
344 B
Rust
//! This crate contains the [`State`] and shared between
|
|
//! server (`veloren-server`) and the client (`veloren-client`)
|
|
|
|
mod build_areas;
|
|
#[cfg(feature = "plugins")] pub mod plugin;
|
|
mod state;
|
|
// TODO: breakup state module and remove glob
|
|
pub use build_areas::{BuildAreaError, BuildAreas};
|
|
pub use state::{BlockChange, State, TerrainChanges};
|