Ejemplo n.º 1
0
 public void onUserChangeRoomProperty(com.shephertz.app42.gaming.multiplayer.client.events.RoomData roomData, string sender, Dictionary <string, object> properties, Dictionary <string, string> lockedPropertiesTable)
 {
     UIDispatcher.Execute(delegate()
     {
         tblmessage.Text = tblmessage.Text + "\nonUserChangeRoomProperty : sender" + roomData.getName() + " sender " + sender;
     });
 }
Ejemplo n.º 2
0
 public void onUserJoinedRoom(com.shephertz.app42.gaming.multiplayer.client.events.RoomData eventObj, string username)
 {
     UIDispatcher.Execute(delegate()
     {
         tblmessage.Text = tblmessage.Text + "\nonUserJoinedRoom Name " + eventObj.getName() + " Id " + eventObj.getId() + " MaxUsers " + eventObj.getMaxUsers() + " username " + username;
     });
 }
Ejemplo n.º 3
0
 public void onRoomDestroyed(com.shephertz.app42.gaming.multiplayer.client.events.RoomData eventObj)
 {
     UIDispatcher.Execute(delegate()
     {
         tblmessage.Text = tblmessage.Text + "\nonRoomDestroyed Name " + eventObj.getName() + " Id " + eventObj.getId() + " MaxUsers " + eventObj.getMaxUsers();
     });
 }
Ejemplo n.º 4
0
 public void onUserLeftRoom(com.shephertz.app42.gaming.multiplayer.client.events.RoomData eventObj, string username)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 5
0
 public void onUserChangeRoomProperty(com.shephertz.app42.gaming.multiplayer.client.events.RoomData roomData, string sender, Dictionary <string, object> properties, Dictionary <string, string> lockedPropertiesTable)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 6
0
 public void onRoomDestroyed(com.shephertz.app42.gaming.multiplayer.client.events.RoomData eventObj)
 {
     throw new NotImplementedException();
 }