示例#1
0
 public System.Threading.Tasks.Task <Form.TakiService.Game> StartGameAsync(Form.TakiService.Player p, int playerCount)
 {
     return(base.Channel.StartGameAsync(p, playerCount));
 }
示例#2
0
 public Form.TakiService.Game StartGame(Form.TakiService.Player p, int playerCount)
 {
     return(base.Channel.StartGame(p, playerCount));
 }
示例#3
0
 public System.Threading.Tasks.Task <bool> PlayerQuitAsync(Form.TakiService.Player p)
 {
     return(base.Channel.PlayerQuitAsync(p));
 }
示例#4
0
 public bool PlayerQuit(Form.TakiService.Player p)
 {
     return(base.Channel.PlayerQuit(p));
 }
示例#5
0
 public System.Threading.Tasks.Task <bool> StopSearchingForGameAsync(Form.TakiService.Player p)
 {
     return(base.Channel.StopSearchingForGameAsync(p));
 }
示例#6
0
 public bool StopSearchingForGame(Form.TakiService.Player p)
 {
     return(base.Channel.StopSearchingForGame(p));
 }