aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/TrailerCommands.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-01-18 18:09:48 -0500
committerMichael <[email protected]>2017-01-18 18:09:52 -0500
commit8e9692fa28cc55520cfd084cd398bd5897bc60fe (patch)
tree5d2701adeffb78cbbf796752938f67c372aab34c /ShiftOS.WinForms/TrailerCommands.cs
parentfd7d44a07f1f74f9e4eaa38a68bb2e5592c8eb8f (diff)
downloadshiftos_thereturn-8e9692fa28cc55520cfd084cd398bd5897bc60fe.tar.gz
shiftos_thereturn-8e9692fa28cc55520cfd084cd398bd5897bc60fe.tar.bz2
shiftos_thereturn-8e9692fa28cc55520cfd084cd398bd5897bc60fe.zip
test
Diffstat (limited to 'ShiftOS.WinForms/TrailerCommands.cs')
-rw-r--r--ShiftOS.WinForms/TrailerCommands.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/TrailerCommands.cs b/ShiftOS.WinForms/TrailerCommands.cs
new file mode 100644
index 0000000..6264db0
--- /dev/null
+++ b/ShiftOS.WinForms/TrailerCommands.cs
@@ -0,0 +1,24 @@
+#define TRAILER
+#if TRAILER
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using ShiftOS.Engine;
+
+namespace ShiftOS.WinForms
+{
+ [Namespace("trailer")]
+ public static class TrailerCommands
+ {
+ [Command("init")]
+ public static bool TrailerInit()
+ {
+ var oobe = new Oobe();
+ oobe.StartTrailer();
+ return true;
+ }
+ }
+}
+#endif \ No newline at end of file