mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
25 lines
474 B
C#
25 lines
474 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
using Sys = Cosmos.System;
|
|
|
|
namespace SentinelKernel
|
|
{
|
|
public class Kernel : Sys.Kernel
|
|
{
|
|
protected override void BeforeRun()
|
|
{
|
|
}
|
|
|
|
protected override void Run()
|
|
{
|
|
string a = "test";
|
|
double b = 1.25;
|
|
Console.WriteLine($"{a} = {b}");
|
|
mDebugger.Send($"{a} = {b}");
|
|
}
|
|
}
|
|
}
|
|
|