Cosmos/source/Cosmos.System2/Power.cs
2018-10-02 22:07:00 +01:00

14 lines
260 B
C#

namespace Cosmos.System
{
public static class Power
{
public static void Reboot()
{
HAL.Power.CPUReboot();
}
public static void Shutdown()
{
HAL.Power.ACPIShutdown();
}
}
}