public interface LobbyListener
| Modifier and Type | Method and Description |
|---|---|
void |
gameAdded(String game)
Notifies the listener that a game was added.
|
void |
gameRemoved(String game)
Notifies the listener that a game was removed.
|
void |
playerCountUpdated(int count)
Notifies the listener that the membership count of the lobby has
changed.
|
void |
playerCountUpdated(String game,
int count)
Notifies the listener that the membership count of some game has
changed.
|
void |
setCharacters(Collection<CharacterStats> characters)
Notifies the listener of the characters available for the player.
|
void gameAdded(String game)
game - the name of the gamevoid gameRemoved(String game)
game - the name of the gamevoid playerCountUpdated(int count)
count - the number of playersvoid playerCountUpdated(String game, int count)
game - the name of the game where the count changedcount - the number of playersvoid setCharacters(Collection<CharacterStats> characters)
characters - the characters available to playCopyright © 2013. All Rights Reserved.