mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
27 lines
No EOL
694 B
C#
27 lines
No EOL
694 B
C#
using System;
|
|
using Cosmos.Compiler.Builder;
|
|
using Cosmos.Sys;
|
|
|
|
namespace BaseTest
|
|
{
|
|
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
|
|
|
|
// Main entry point of the kernel
|
|
public static void Init()
|
|
{
|
|
Boot bt = new Boot();
|
|
bt.Execute();
|
|
Console.WriteLine("Welcome! This will be my playground to test out the various features i'll implement. :)");
|
|
Deboot.ShutDown();
|
|
}
|
|
}
|
|
} |