2021-04-21 17:10:13 +00:00
|
|
|
//! This crate contains the [`State`] and shared between
|
|
|
|
//! server (`veloren-server`) and the client (`veloren-client`)
|
2021-04-21 14:10:06 +00:00
|
|
|
|
2023-06-24 12:22:29 +00:00
|
|
|
#![feature(maybe_uninit_uninit_array, maybe_uninit_array_assume_init)]
|
|
|
|
|
2021-04-21 17:10:13 +00:00
|
|
|
#[cfg(feature = "plugins")] pub mod plugin;
|
2023-05-15 22:40:53 +00:00
|
|
|
mod special_areas;
|
2021-04-21 17:10:13 +00:00
|
|
|
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};
|