This commit is contained in:
BetaSteward 2010-04-16 03:51:49 +00:00
parent 7e16c0ff81
commit 9013591805
9 changed files with 111 additions and 118 deletions

View file

@ -28,6 +28,7 @@
package mage.server.game;
import mage.game.Table;
import java.util.Collection;
import java.util.List;
import java.util.UUID;
@ -35,7 +36,6 @@ import java.util.concurrent.ConcurrentHashMap;
import java.util.logging.Logger;
import mage.cards.decks.DeckCardLists;
import mage.game.GameException;
import mage.game.Table;
import mage.util.Logging;
/**
@ -113,4 +113,8 @@ public class TableManager {
public void endGame(UUID tableId) {
controllers.get(tableId).endGame();
}
public GameReplay createReplay(UUID tableId) {
return controllers.get(tableId).createReplay();
}
}