8 lines
99 B
Rust
8 lines
99 B
Rust
pub mod weapon;
|
|
pub mod tool;
|
|
pub mod armor;
|
|
|
|
pub trait ShopItem {
|
|
fn price(&self) -> usize;
|
|
}
|