Skip to content

Commit dd5e5d7

Browse files
committed
Formatting
1 parent 00e764f commit dd5e5d7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Program.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,10 @@ void SelectApp()
5757
}
5858
}
5959

60+
// Initialise the client
6061
void StartClient(string read)
6162
{
63+
// Commonly used
6264
appfound = true;
6365
input = read;
6466

@@ -80,15 +82,17 @@ void StartClient(string read)
8082

8183
// Connect to the RPC
8284
client.Initialize();
83-
8485
}
8586

8687
// Command Loop
8788
while(true)
8889
{
90+
// Request user interaction
8991
Console.Write("[RO] Ready! > ");
9092
string command = Console.ReadLine();
9193
command = command.ToLower();
94+
95+
// Command switch
9296
switch(command)
9397
{
9498
case "memory" or "mem":

0 commit comments

Comments
 (0)