mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
12 lines
404 B
Rust
12 lines
404 B
Rust
//! 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;
|
|
mod special_areas;
|
|
mod state;
|
|
// TODO: breakup state module and remove glob
|
|
pub use special_areas::*;
|
|
pub use state::{BlockChange, BlockDiff, State, TerrainChanges};
|