Ejemplo n.º 1
0
 public void onUpdatePropertyDone(com.shephertz.app42.gaming.multiplayer.client.events.LiveRoomInfoEvent liveRoomInfoEvent)
 {
     if (liveRoomInfoEvent.getResult() == WarpResponseResultCode.SUCCESS)
     {
         WriteOnUI("onUpdatePropertyDone " + liveRoomInfoEvent.getData().getId());
     }
     else
     {
         WriteOnUI("onUpdatePropertyDone Failed " + liveRoomInfoEvent.getResult());
     }
 }
Ejemplo n.º 2
0
 public void onSetCustomRoomDataDone(com.shephertz.app42.gaming.multiplayer.client.events.LiveRoomInfoEvent eventObj)
 {
     if (eventObj.getResult() == WarpResponseResultCode.SUCCESS)
     {
         WriteOnUI("onSetCustomRoomDataDone " + eventObj.getData().getId());
     }
     else
     {
         WriteOnUI("onSetCustomRoomDataDone Failed " + eventObj.getResult());
     }
 }