Cosmos/source/MoitoiusTest/Program.cs
2008-03-22 01:24:47 +00:00

34 lines
809 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Cosmos.Build.Windows;
namespace MoitoiusTest
{
class Program
{
#region Cosmos Builder logic
// Most users wont touch this. This will call the Cosmos Build tool
[STAThread]
static void Main(string[] args) {
BuildUI.Run();
}
#endregion
public static void Init()
{
Cosmos.Kernel.Boot.Default();
Cosmos.Kernel.Staging.DefaultStageQueue stages = new Cosmos.Kernel.Staging.DefaultStageQueue();
// Put any further stages here.
stages.Run();
// Put your code here.
stages.Teardown();
while (true)
;
}
}
}