mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
23 lines
435 B
C#
23 lines
435 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Cosmos.HAL;
|
|
using Cosmos.System;
|
|
using PlaygroundHAL;
|
|
|
|
namespace PlaygroundSystem
|
|
{
|
|
public abstract class OurKernel: Kernel
|
|
{
|
|
protected override TextScreenBase GetTextScreen()
|
|
{
|
|
return new DebugTextScreen();
|
|
}
|
|
|
|
public void DoIt()
|
|
{
|
|
}
|
|
}
|
|
}
|