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