Files
SteelSaga/src/item.rs
Wesley Irvin 6f2517c830 Create Item
Definition of an item struct.
2023-11-19 15:05:47 -05:00

5 lines
62 B
Rust

pub struct Item {
pub name: String,
pub value: i32,
}