Code: Select all
public void OnLogin(bool success, string name, string error) {
if ( success ) {
// Lets wait for the room list
// here is what i try to fix but i dont know how to set a Hashtable
OnRoomList();
} else {
// Login failed - lets display the error message sent to us
loginErrorMessage = error;
}
}
void OnRoomList(Hashtable roomList){
can someone please explain me how i get to use hashtable for the room list or how i fix this thx i would be happy i try this now for a day and still cant get it to work