Cosmos/source/Cosmos/Cosmos.Kernel/Global.cs
2008-05-07 01:43:06 +00:00

12 lines
279 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Cosmos.Kernel {
public class Global {
public static void Init() {
//Init Heap first - Hardware loads devices and they need heap
Heap.Init();
}
}
}