ShiftOS-TheRevival-Old/ShiftOS-TheRevival/Functions/InGame/SystemManager/Terminate.vb

17 lines
421 B
VB.net
Raw Normal View History

Module Terminate
Public Sub TerminateShiftOS()
NewLine("Stopping the Window Manager...")
2022-11-21 06:56:13 +00:00
StopG()
Console_Full()
If Strings.OnceInfo(6) = "story" Then
NewLine("Saving game...")
SaveGame()
End If
Cursor.Show()
NewLine("Shutting down...")
ShiftOSMenu.Show()
Console.Close()
2022-11-21 03:43:53 +00:00
Shifter.Close()
End Sub
End Module