Cosmos/source2/Cosmos.Launch.Manual/Program.cs
kudzu_cp 5bcabb8d8c
2012-07-01 18:05:01 +00:00

13 lines
287 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Launch.Manual {
class Program {
static int Main(string[] aArgs) {
var xHost = new DebugHost(aArgs);
return xHost.Go("Manual Launching");
}
}
}