function update

This commit is contained in:
2023-10-11 11:51:44 +09:00
parent bf645548c5
commit 08207c9eec
10 changed files with 188 additions and 12 deletions

View File

@@ -13,8 +13,17 @@ namespace TAPClient
while (true)
{
string message = Console.ReadLine();
client.SendMessage(message);
string input = Console.ReadLine();
switch (input.ToLower())
{
case "rcl":
client.RequireClientList();
break;
default:
client.SendMessage(input);
break;
}
}
}
}