diff options
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 |
