forked from External/mage
- Add reference to original library in `FluentBuilder`. - Change `I<Name>` notation to `<Name>Impl` notation. - Move error config to test resources - Add comment with config instruction - Add config to the documentation
18 lines
317 B
Java
18 lines
317 B
Java
package mage.server.managers;
|
|
|
|
import mage.server.game.GamesRoom;
|
|
|
|
import java.util.Optional;
|
|
import java.util.UUID;
|
|
|
|
public interface GamesRoomManager {
|
|
UUID createRoom();
|
|
|
|
UUID getMainRoomId();
|
|
|
|
UUID getMainChatId();
|
|
|
|
Optional<GamesRoom> getRoom(UUID roomId);
|
|
|
|
void removeTable(UUID tableId);
|
|
}
|