mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
34 lines
809 B
C#
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)
|
|
;
|
|
}
|
|
}
|
|
}
|