veloren/common/state/src/lib.rs

12 lines
404 B
Rust
Raw Normal View History

//! This crate contains the [`State`] and shared between
//! server (`veloren-server`) and the client (`veloren-client`)
#![feature(maybe_uninit_uninit_array, maybe_uninit_array_assume_init)]
#[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};