finalised gamelog

This commit is contained in:
Llywelwyn 2023-09-25 20:38:52 +01:00
parent 8de3648bae
commit e258767405
10 changed files with 73 additions and 224 deletions

View file

@ -20,7 +20,7 @@ pub struct SerializationHelper {
#[derive(Component, Serialize, Deserialize, Clone)]
pub struct DMSerializationHelper {
pub map: super::map::MasterDungeonMap,
pub log: Vec<Vec<crate::gamelog::LogFragment>>,
pub log: std::collections::BTreeMap<i32, Vec<crate::gamelog::LogFragment>>,
pub event_counts: HashMap<String, i32>,
pub events: HashMap<u32, Vec<String>>,
}