mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-25 06:37:43 +02:00

* Implement dlc management window * reduce repetition * Implement per NCA toggling of DLC rather than per container
10 lines
No EOL
217 B
C#
10 lines
No EOL
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; }
|
|
}
|
|
} |