15 lines
250 B
C#
15 lines
250 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
namespace Ryujinx.Common.Configuration
|
||
|
|
{
|
||
|
|
public struct ModMetadata
|
||
|
|
{
|
||
|
|
public List<Mod> Mods { get; set; }
|
||
|
|
|
||
|
|
public ModMetadata()
|
||
|
|
{
|
||
|
|
Mods = new List<Mod>();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|