ShiftOS-TheRevival-Old/ShiftOS-TheRevival/Functions/InGame/SystemManager/Terminate.vb
2022-11-17 11:22:51 +07:00

15 lines
397 B
VB.net

Module Terminate
Public Sub TerminateShiftOS()
NewLine("Stopping the Window Manager...")
StopX()
Console_Full()
If Strings.OnceInfo(6) = "story" Then
NewLine("Saving game...")
SaveGame()
End If
Cursor.Show()
NewLine("Shutting down...")
ShiftOSMenu.Show()
Console.Close()
End Sub
End Module