diff options
| author | Xpl0itR <xpl0itr@outlook.com> | 2020-06-23 01:32:07 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-23 10:32:07 +1000 |
| commit | 2ed9db1fcdc679aab552dc1ddeaf1e80e05ee65c (patch) | |
| tree | 22b77ae34a57960527e70ca5dc932856a297ac5d /Ryujinx.Common/Configuration | |
| parent | fcd187ce42b11dc0e0a6bc93c227c79772a3496a (diff) | |
Implement dlc management window (#1313)
* Implement dlc management window
* reduce repetition
* Implement per NCA toggling of DLC rather than per container
Diffstat (limited to 'Ryujinx.Common/Configuration')
| -rw-r--r-- | Ryujinx.Common/Configuration/DlcContainer.cs | 10 | ||||
| -rw-r--r-- | Ryujinx.Common/Configuration/DlcNca.cs | 9 |
2 files changed, 19 insertions, 0 deletions
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<DlcNca> 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 |
