Interface Room
- All Known Implementing Classes:
NodeRoom,SimpleRoom
public interface Room
Represents a game room on the server
- Author:
- rkinney
-
Method Summary
Modifier and TypeMethodDescriptionvoidAdd a player to this roomgetName()The display name of this roomReturn an (unmodifiable) list of playersvoidRemove a player from this room
-
Method Details
-
getName
String getName()The display name of this room -
getPlayerList
-
addPlayer
Add a player to this room -
removePlayer
Remove a player from this room
-