mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 22:09:12 +00:00
14 lines
295 B
C#
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();
|
|
}
|
|
}
|