mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
14 lines
260 B
C#
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();
|
|
}
|
|
}
|
|
}
|