This repository has been archived on 2025-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
ShiftOS_TheReturn/ShiftOS.WinForms/TrailerCommands.cs
2017-01-18 18:09:52 -05:00

24 lines
No EOL
466 B
C#

#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