mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
9 lines
243 B
Rust
9 lines
243 B
Rust
//! This crate contains the [`State`] and shared between
|
|
//! server (`veloren-server`) and the client (`veloren-client`)
|
|
|
|
#[cfg(feature = "plugins")] pub mod plugin;
|
|
mod state;
|
|
|
|
// TODO: breakup state module and remove globs
|
|
pub use state::*;
|