Cosmos/Users/Matthijs/PlaygroundSystem/OurKernel.cs
Matthijs ter Woord 71647fa672 Ongoing changes
2015-01-01 13:25:25 +01:00

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()
{
}
}
}