forked from External/mage
initial drafting stuff
This commit is contained in:
parent
5679c2de15
commit
7bea472fff
13 changed files with 469 additions and 3 deletions
|
|
@ -30,10 +30,12 @@ package mage.game.events;
|
|||
|
||||
import java.io.Serializable;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
import java.util.UUID;
|
||||
import mage.abilities.ActivatedAbility;
|
||||
import mage.abilities.TriggeredAbilities;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.Cards;
|
||||
|
||||
/**
|
||||
|
|
@ -93,4 +95,8 @@ public class PlayerQueryEventSource implements EventSource<PlayerQueryEvent>, Se
|
|||
dispatcher.fireEvent(PlayerQueryEvent.playXManaEvent(playerId, message));
|
||||
}
|
||||
|
||||
public void pickCard(UUID playerId, String message, List<Card> booster) {
|
||||
dispatcher.fireEvent(PlayerQueryEvent.pickCard(playerId, message, booster));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue