17 lines
279 B
Rust
17 lines
279 B
Rust
|
mod bank;
|
||
|
mod floor;
|
||
|
mod inventory;
|
||
|
mod manager;
|
||
|
|
||
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
|
||
|
pub struct ClientItemId(pub u32);
|
||
|
|
||
|
//pub use inventory::InventoryItem;
|
||
|
//pub use floor::FloorItem;
|
||
|
pub use inventory::*;
|
||
|
pub use floor::*;
|
||
|
pub use bank::*;
|
||
|
pub use manager::*;
|
||
|
|
||
|
|