8 lines
99 B
Rust
Raw Normal View History

2020-09-18 07:55:48 -06:00
pub mod weapon;
2020-09-21 00:37:50 -06:00
pub mod tool;
2020-09-22 22:39:28 -06:00
pub mod armor;
2020-09-23 19:14:11 -06:00
pub trait ShopItem {
fn price(&self) -> usize;
}