From 2ed9db1fcdc679aab552dc1ddeaf1e80e05ee65c Mon Sep 17 00:00:00 2001 From: Xpl0itR Date: Tue, 23 Jun 2020 01:32:07 +0100 Subject: Implement dlc management window (#1313) * Implement dlc management window * reduce repetition * Implement per NCA toggling of DLC rather than per container --- Ryujinx.Common/Configuration/DlcContainer.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Ryujinx.Common/Configuration/DlcContainer.cs (limited to 'Ryujinx.Common/Configuration/DlcContainer.cs') diff --git a/Ryujinx.Common/Configuration/DlcContainer.cs b/Ryujinx.Common/Configuration/DlcContainer.cs new file mode 100644 index 00000000..c056ac1e --- /dev/null +++ b/Ryujinx.Common/Configuration/DlcContainer.cs @@ -0,0 +1,10 @@ +using System.Collections.Generic; + +namespace Ryujinx.Common.Configuration +{ + public struct DlcContainer + { + public string Path { get; set; } + public List DlcNcaList { get; set; } + } +} \ No newline at end of file -- cgit v1.2.3