aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/OsHle/Services/Vi/Display.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/OsHle/Services/Vi/Display.cs')
-rw-r--r--Ryujinx.HLE/OsHle/Services/Vi/Display.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Ryujinx.HLE/OsHle/Services/Vi/Display.cs b/Ryujinx.HLE/OsHle/Services/Vi/Display.cs
new file mode 100644
index 00000000..3da51c47
--- /dev/null
+++ b/Ryujinx.HLE/OsHle/Services/Vi/Display.cs
@@ -0,0 +1,12 @@
+namespace Ryujinx.HLE.OsHle.Services.Vi
+{
+ class Display
+ {
+ public string Name { get; private set; }
+
+ public Display(string Name)
+ {
+ this.Name = Name;
+ }
+ }
+} \ No newline at end of file