2020-07-19 14:14:07 -06:00
|
|
|
mod bank;
|
|
|
|
mod floor;
|
|
|
|
mod inventory;
|
|
|
|
mod manager;
|
|
|
|
|
|
|
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
|
|
|
|
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::*;
|
|
|
|
|
|
|
|
|