mirror of
https://github.com/EverythingWindows/ShiftOS-TheRevival-Old.git
synced 2025-01-22 11:21:47 -05:00
18 lines
648 B
VB.net
18 lines
648 B
VB.net
Module Com_Shiftorium
|
|
Public Sub Shiftorium()
|
|
Dim prompt As String = command.Replace("shiftorium ", "")
|
|
NewLine("Shiftorium ShiftOS Center")
|
|
If prompt Like "info *" Then
|
|
Shiftoriums.prompt = command.Replace("shiftorium info ", "")
|
|
Shiftorium_InformationFeatures()
|
|
End If
|
|
If prompt Like "install *" Then
|
|
Shiftoriums.prompt = command.Replace("shiftorium install ", "")
|
|
Shiftorium_DetectInstallFeatures()
|
|
End If
|
|
If prompt = "list" Then
|
|
Shiftorium_ListFeatures()
|
|
NormalCommand()
|
|
End If
|
|
End Sub
|
|
End Module
|