8 lines
223 B
Rust
8 lines
223 B
Rust
pub mod state;
|
|
pub mod actions;
|
|
pub mod apply_item;
|
|
pub mod itemstateaction;
|
|
|
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq, serde::Serialize, serde::Deserialize, derive_more::Display)]
|
|
pub struct ClientItemId(pub u32);
|