Uses of Class
io.sockit.gameserver.bot.RoomType
Package | Description |
---|---|
io.sockit.gameserver.bot |
This is the core package for the Sockit Game Bot and provides the classes necessary to create bots running on the server side of a multiplayer turn based game.
|
-
Uses of RoomType in io.sockit.gameserver.bot
Fields in io.sockit.gameserver.bot declared as RoomType Modifier and Type Field Description RoomType
Room. roomType
The type of this room (normal or fast)Methods in io.sockit.gameserver.bot that return RoomType Modifier and Type Method Description static RoomType
RoomType. valueOf(String name)
Returns the enum constant of this type with the specified name.static RoomType[]
RoomType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.sockit.gameserver.bot with parameters of type RoomType Modifier and Type Method Description void
Bot. getRooms(String location, RoomType roomType)
Fetches the list of rooms from the servervoid
BotEventAdapter. onGetRooms(Bot bot, String gameName, String location, RoomType roomtype, List<RoomInfo> rooms)
void
BotEventListener. onGetRooms(Bot bot, String gameName, String location, RoomType roomtype, List<RoomInfo> rooms)
Event-Handler/Callback called when the Bot receives the room list from the Server