2020-07-19 14:14:07 -06:00
|
|
|
mod bank;
|
|
|
|
mod floor;
|
2020-11-09 19:07:41 -07:00
|
|
|
pub mod inventory;
|
2021-12-29 15:22:03 -07:00
|
|
|
pub mod manager;
|
2021-12-12 15:55:59 -07:00
|
|
|
pub mod transaction;
|
2020-09-05 21:10:12 -06:00
|
|
|
pub mod use_tool;
|
2020-11-09 18:54:44 -07:00
|
|
|
use serde::{Serialize, Deserialize};
|
2020-07-19 14:14:07 -06:00
|
|
|
|
2021-12-10 23:41:17 -07:00
|
|
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq, Serialize, Deserialize, derive_more::Display)]
|
2020-07-19 14:14:07 -06:00
|
|
|
pub struct ClientItemId(pub u32);
|
|
|
|
|
2020-07-19 14:50:52 -06:00
|
|
|
// TODO: remove these and fix use statements in the rest of the codebase
|
2020-07-19 14:14:07 -06:00
|
|
|
pub use inventory::*;
|
|
|
|
pub use floor::*;
|
|
|
|
pub use bank::*;
|
|
|
|
pub use manager::*;
|
|
|
|
|
|
|
|
|