mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
added Construct and Sideboard callbacks
This commit is contained in:
parent
a316b01b15
commit
27da366eea
12 changed files with 173 additions and 56 deletions
|
|
@ -49,15 +49,12 @@ import javax.swing.SwingUtilities;
|
|||
import javax.swing.UIManager;
|
||||
import mage.choices.Choice;
|
||||
import mage.interfaces.ServerState;
|
||||
//import mage.interfaces.MageClient;
|
||||
//import mage.interfaces.callback.ClientCallback;
|
||||
import mage.remote.Connection;
|
||||
//import mage.remote.Session;
|
||||
//import mage.remote.SessionImpl;
|
||||
import mage.utils.MageVersion;
|
||||
import mage.view.AbilityPickerView;
|
||||
import mage.view.CardsView;
|
||||
import mage.view.ChatMessage;
|
||||
import mage.view.DeckView;
|
||||
import mage.view.GameClientMessage;
|
||||
import mage.view.GameEndView;
|
||||
import mage.view.GameView;
|
||||
|
|
@ -460,4 +457,14 @@ public class ConsoleFrame extends javax.swing.JFrame implements MageClient {
|
|||
public void gameError(UUID gameId, String message) {
|
||||
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
|
||||
}
|
||||
|
||||
@Override
|
||||
public void sideboard(UUID tableId, DeckView deck, int time, boolean limited) {
|
||||
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
|
||||
}
|
||||
|
||||
@Override
|
||||
public void construct(UUID tableId, DeckView deck, int time) {
|
||||
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue