mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-30 04:40:14 +00:00
14 lines
390 B
C#
14 lines
390 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BreakpointsKernel {
|
|
public class Kernel {
|
|
// This is a temp wrapper to bridge from existing project format
|
|
// to the new coming project format.
|
|
public static void Boot() {
|
|
var xKernel = new BreakpointsOS();
|
|
xKernel.Start();
|
|
}
|
|
}
|
|
}
|