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

21 lines
526 B
VB.net
Raw Permalink Normal View History

Module Terminate
Public Sub TerminateShiftOS()
2022-11-21 22:42:55 +00:00
If IsStartG = True Then
NewLine("Stopping the Window Manager...")
StopG()
End If
Console_Full()
If Strings.OnceInfo(6) = "story" Then
NewLine("Saving game...")
SaveGame()
End If
Cursor.Show()
NewLine("Shutting down...")
ShiftOSMenu.Show()
2022-11-27 13:58:48 +00:00
Cursor.Show()
2022-11-21 22:42:55 +00:00
If IsStartG = False Then
Console.Close()
End If
End Sub
End Module