Example #1
0
 public void onGetLiveLobbyInfoDone(com.shephertz.app42.gaming.multiplayer.client.events.LiveRoomInfoEvent eventObj)
 {
     if (eventObj.getResult() == WarpResponseResultCode.SUCCESS)
     {
         WriteOnUI("onGetLiveLobbyInfoDone " + eventObj.getData().getName());
     }
     else
     {
         WriteOnUI("onGetLiveLobbyInfoDone Failed ");
     }
 }
Example #2
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());
     }
 }