aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Modding.VirtualMachine/Program.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-02-02 09:47:23 -0500
committerMichael <[email protected]>2017-02-02 09:47:23 -0500
commitbbe37edb68f9e7535216bff80ba3e6b16cbca398 (patch)
tree4382859eda0c253e17966159890f49208a41367f /ShiftOS.Modding.VirtualMachine/Program.cs
parentd8978b860d950e3ccde3c8beecf8b88bdd4a34a8 (diff)
downloadshiftos_thereturn-bbe37edb68f9e7535216bff80ba3e6b16cbca398.tar.gz
shiftos_thereturn-bbe37edb68f9e7535216bff80ba3e6b16cbca398.tar.bz2
shiftos_thereturn-bbe37edb68f9e7535216bff80ba3e6b16cbca398.zip
Shiftnet, and audio fixes
Diffstat (limited to 'ShiftOS.Modding.VirtualMachine/Program.cs')
-rw-r--r--ShiftOS.Modding.VirtualMachine/Program.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/ShiftOS.Modding.VirtualMachine/Program.cs b/ShiftOS.Modding.VirtualMachine/Program.cs
new file mode 100644
index 0000000..3d78ad8
--- /dev/null
+++ b/ShiftOS.Modding.VirtualMachine/Program.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace ShiftOS.Modding.VirtualMachine
+{
+ static class Program
+ {
+ /// <summary>
+ /// The main entry point for the application.
+ /// </summary>
+ [STAThread]
+ static void Main()
+ {
+ ShiftOS.WinForms.Program.Main();
+ }
+ }
+}