mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 22:28:33 +00:00
2ed9db1fcd
* Implement dlc management window * reduce repetition * Implement per NCA toggling of DLC rather than per container
10 lines
217 B
C#
10 lines
217 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.Common.Configuration
|
|
{
|
|
public struct DlcContainer
|
|
{
|
|
public string Path { get; set; }
|
|
public List<DlcNca> DlcNcaList { get; set; }
|
|
}
|
|
} |