ModMetadata.cs
1 using System.Collections.Generic; 2 3 namespace Ryujinx.Common.Configuration 4 { 5 public struct ModMetadata 6 { 7 public List<Mod> Mods { get; set; } 8 9 public ModMetadata() 10 { 11 Mods = new List<Mod>(); 12 } 13 } 14 }
1 using System.Collections.Generic; 2 3 namespace Ryujinx.Common.Configuration 4 { 5 public struct ModMetadata 6 { 7 public List<Mod> Mods { get; set; } 8 9 public ModMetadata() 10 { 11 Mods = new List<Mod>(); 12 } 13 } 14 }