aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/FileSystem/Content/LocationEntry.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/FileSystem/Content/LocationEntry.cs')
-rw-r--r--Ryujinx.HLE/FileSystem/Content/LocationEntry.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/Ryujinx.HLE/FileSystem/Content/LocationEntry.cs b/Ryujinx.HLE/FileSystem/Content/LocationEntry.cs
new file mode 100644
index 00000000..c7c6133b
--- /dev/null
+++ b/Ryujinx.HLE/FileSystem/Content/LocationEntry.cs
@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+using LibHac;
+
+namespace Ryujinx.HLE.FileSystem.Content
+{
+ public struct LocationEntry
+ {
+ public string ContentPath { get; private set; }
+ public int Flag { get; private set; }
+ public long TitleId { get; private set; }
+ public ContentType ContentType { get; private set; }
+
+ public LocationEntry(string ContentPath, int Flag, long TitleId, ContentType ContentType)
+ {
+ this.ContentPath = ContentPath;
+ this.Flag = Flag;
+ this.TitleId = TitleId;
+ this.ContentType = ContentType;
+ }
+
+ public void SetFlag(int Flag)
+ {
+ this.Flag = Flag;
+ }
+ }
+}