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 ++++++++++ Ryujinx.Common/Configuration/DlcNca.cs | 9 +++++++++ 2 files changed, 19 insertions(+) create mode 100644 Ryujinx.Common/Configuration/DlcContainer.cs create mode 100644 Ryujinx.Common/Configuration/DlcNca.cs (limited to 'Ryujinx.Common/Configuration') 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 diff --git a/Ryujinx.Common/Configuration/DlcNca.cs b/Ryujinx.Common/Configuration/DlcNca.cs new file mode 100644 index 00000000..df6a4532 --- /dev/null +++ b/Ryujinx.Common/Configuration/DlcNca.cs @@ -0,0 +1,9 @@ +namespace Ryujinx.Common.Configuration +{ + public struct DlcNca + { + public string Path { get; set; } + public ulong TitleId { get; set; } + public bool Enabled { get; set; } + } +} \ No newline at end of file -- cgit v1.2.3