ShiftOS-TheRevival-Old/ShiftOS-TheRevival/Functions/InGame/SystemManager/Terminate.vb
2022-11-22 05:42:55 +07:00

19 lines
504 B
VB.net

Module Terminate
Public Sub TerminateShiftOS()
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()
If IsStartG = False Then
Console.Close()
End If
End Sub
End Module