ShiftOS_TheReturn/ShiftOS.WinForms/TrailerCommands.cs

24 lines
466 B
C#
Raw Normal View History

2017-01-18 23:09:48 +00:00
#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