Package VASSAL.chat
Interface Room
- All Known Implementing Classes:
JabberRoom
,NodeRoom
,SimpleRoom
public interface Room
Represents a game room on the server
- Author:
- rkinney
-
Method Summary
Modifier and Type Method Description void
addPlayer(Player p)
Add a player to this roomString
getName()
The display name of this roomList<Player>
getPlayerList()
Return an (unmodifiable) list of playersvoid
removePlayer(Player p)
Remove a player from this room
-
Method Details
-
getName
String getName()The display name of this room -
getPlayerList
Return an (unmodifiable) list of players -
addPlayer
Add a player to this room -
removePlayer
Remove a player from this room
-