mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-30 06:52:22 -05:00
15 lines
237 B
C#
15 lines
237 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.Common.Configuration
|
|
{
|
|
public struct ModMetadata
|
|
{
|
|
public List<Mod> Mods { get; set; }
|
|
|
|
public ModMetadata()
|
|
{
|
|
Mods = [];
|
|
}
|
|
}
|
|
}
|