19 lines
388 B
Rust
Raw Normal View History

mod bank;
mod floor;
2020-11-09 19:07:41 -07:00
pub mod inventory;
mod manager;
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-11-09 18:54:44 -07:00
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq, Serialize, Deserialize)]
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
pub use inventory::*;
pub use floor::*;
pub use bank::*;
pub use manager::*;