mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-25 06:37:43 +02:00
14 lines
237 B
C#
14 lines
237 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.Common.Configuration
|
|
{
|
|
public struct ModMetadata
|
|
{
|
|
public List<Mod> Mods { get; set; }
|
|
|
|
public ModMetadata()
|
|
{
|
|
Mods = [];
|
|
}
|
|
}
|
|
}
|