mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
29 lines
No EOL
715 B
C#
29 lines
No EOL
715 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Cosmos.Build.Windows;
|
|
|
|
namespace MatthijsTest {
|
|
public class Program {
|
|
#region Cosmos Builder logic
|
|
|
|
// Most users wont touch this. This will call the Cosmos Build tool
|
|
[STAThread]
|
|
private static void Main(string[] args) {
|
|
BuildUI.Run();
|
|
}
|
|
|
|
#endregion
|
|
|
|
public static void GetResumeAndResume(ref uint aSuspend)
|
|
{
|
|
aSuspend = 0;
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public static void Init() {
|
|
Cosmos.Kernel.Boot.Default();
|
|
var xTest = new Object();
|
|
}
|
|
}
|
|
} |