mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
19 lines
383 B
C#
19 lines
383 B
C#
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.Sys.Plugs
|
|
{
|
|
[Plug(Target = typeof(Sys.Deboot))]
|
|
public static class Deboot
|
|
{
|
|
[PlugMethod(Assembler = typeof(Assemblers.Reboot))]
|
|
public static void Reboot()
|
|
{
|
|
|
|
}
|
|
[PlugMethod(Assembler = typeof(Assemblers.ShutDown))]
|
|
public static void ShutDown()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|