jake 8b776a5906
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
ok turns out walletfull is a real thing
2021-12-29 15:22:03 -07:00

19 lines
418 B
Rust

mod bank;
mod floor;
pub mod inventory;
pub mod manager;
pub mod transaction;
pub mod use_tool;
use serde::{Serialize, Deserialize};
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq, Serialize, Deserialize, derive_more::Display)]
pub struct ClientItemId(pub u32);
// TODO: remove these and fix use statements in the rest of the codebase
pub use inventory::*;
pub use floor::*;
pub use bank::*;
pub use manager::*;