예제 #1
0
 //CardTapped
 internal JSONResponse <object> NotifyServerOfTappedCard()
 {
     ArcadeGameStartAndStopService.Logger.WriteLog($"Sending Card Tapped");
     return(Client.TransmitJSONCommand <SlaveInfo, object>(new JSONAction <SlaveInfo>()
     {
         ActionName = "CardTapped", ActionData = Info
     }));
 }
 //CardTapped
 internal JSONResponse <object> NotifyServerOfTappedCard()
 {
     Console.WriteLine($"Sending Card Tapped");
     return(Client.TransmitJSONCommand <SlaveInfo, object>(new JSONAction <SlaveInfo>()
     {
         ActionName = "CardTapped", ActionData = Info
     }));
 }