Exemple #1
0
 public async Task KeyPressed(KeyPressedRequest model)
 {
     TronGameService.KeyPressed(model.GameId, model.KeyPressed);
 }
Exemple #2
0
 public void KeyPressed(KeyPressedRequest request)
 {
     TronGameService.KeyPressed(request.GameId, request.KeyPressed);
 }
Exemple #3
0
 private async Task StartGameBackground(HubMediator mediator, string gameId, ushort borderWidth, ushort borderHeight)
 {
     TronGameService.StartGame(mediator, gameId, borderWidth, borderHeight);
 }