Cosmos/source/Kernel/Cosmos.System/Boot.cs
2017-07-26 18:47:36 -04:00

14 lines
295 B
C#

using System;
using System.Collections.Generic;
using System.Security.Cryptography.X509Certificates;
using System.Text;
namespace Cosmos.System {
public abstract class Boot {
public void EntryPoint() {
Run();
}
protected abstract void Run();
}
}