aswi2021tri-musketyri-gitlab/Server/ServerApp/User/CommandsAcceptor.cs @ ebe96ca4
1 | 4a417b8b | Eliška Mourycová | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Threading.Tasks; |
||
6 | |||
7 | namespace ServerApp.User |
||
8 | {
|
||
9 | public class CommandsAcceptor |
||
10 | {
|
||
11 | |||
12 | public static void AcceptCommand() |
||
13 | {
|
||
14 | while (true) { |
||
15 | string command = Console.ReadLine(); |
||
16 | Program.NotifyUserMessage(command); |
||
17 | }
|
||
18 | }
|
||
19 | }
|
||
20 | }
|