using System; using System.Collections.Generic; using YachtDice.Modifiers.Runtime; namespace YachtDice.Persistence { [Serializable] public sealed class SaveData { public int Version = 3; public int Currency; public List OwnedModifiers = new(); public List OwnedDiceIds = new(); } }