aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.LLE
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.LLE')
-rw-r--r--Ryujinx.LLE/Luea.csproj8
-rw-r--r--Ryujinx.LLE/Program.cs12
2 files changed, 20 insertions, 0 deletions
diff --git a/Ryujinx.LLE/Luea.csproj b/Ryujinx.LLE/Luea.csproj
new file mode 100644
index 00000000..23df6047
--- /dev/null
+++ b/Ryujinx.LLE/Luea.csproj
@@ -0,0 +1,8 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>netcoreapp2.1</TargetFramework>
+ </PropertyGroup>
+
+</Project>
diff --git a/Ryujinx.LLE/Program.cs b/Ryujinx.LLE/Program.cs
new file mode 100644
index 00000000..96458d1e
--- /dev/null
+++ b/Ryujinx.LLE/Program.cs
@@ -0,0 +1,12 @@
+using System;
+
+namespace Luea
+{
+ class Program
+ {
+ static void Main(string[] args)
+ {
+ Console.WriteLine("Initializing...");
+ }
+ }
+}