This commit is contained in:
JMARyA 2024-10-07 21:02:23 +02:00
parent 1faa3b9668
commit 6677434ca0
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
3 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,7 @@ use std::collections::HashMap;
use crate::item::Item;
/// Item database
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct ItemDB {
index: HashMap<String, Item>,
}