We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00e764f commit dd5e5d7Copy full SHA for dd5e5d7
Program.cs
@@ -57,8 +57,10 @@ void SelectApp()
57
}
58
59
60
+// Initialise the client
61
void StartClient(string read)
62
{
63
+ // Commonly used
64
appfound = true;
65
input = read;
66
@@ -80,15 +82,17 @@ void StartClient(string read)
80
82
81
83
// Connect to the RPC
84
client.Initialize();
-
85
86
87
// Command Loop
88
while(true)
89
90
+ // Request user interaction
91
Console.Write("[RO] Ready! > ");
92
string command = Console.ReadLine();
93
command = command.ToLower();
94
+
95
+ // Command switch
96
switch(command)
97
98
case "memory" or "mem":
0 commit comments