ServerCommand GivenServerCommand(ServerControlCommands commandType, string data)
 {
     return(new ServerCommand {
         Command = commandType,
         Data = data
     });
 }
示例#2
0
 ServerCommand GivenServerCommand(ServerControlCommands commandType, string data)
 {
     return new ServerCommand {
         Command = commandType,
         Data = data
     };
 }