* Added Celestial Convergence and some changes to game draw handling.

This commit is contained in:
LevelX2 2017-04-21 15:18:04 +02:00
parent 274e0f9052
commit e284922017
8 changed files with 278 additions and 31 deletions

View file

@ -212,6 +212,8 @@ public interface Player extends MageItem, Copyable<Player> {
boolean hasLost();
boolean hasDrew();
boolean hasWon();
boolean hasQuit();
@ -430,6 +432,8 @@ public interface Player extends MageItem, Copyable<Player> {
void lostForced(Game game);
void drew(Game game);
void won(Game game);
void leave();