forked from External/mage
Refactored Target pointers. All tests pass now.
This commit is contained in:
parent
13f547f1a2
commit
12954eceee
138 changed files with 259 additions and 182 deletions
|
|
@ -1,13 +1,15 @@
|
|||
package mage.target.targetpointer;
|
||||
|
||||
import java.io.Serializable;
|
||||
import mage.abilities.Ability;
|
||||
import mage.game.Game;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
public interface TargetPointer extends Serializable {
|
||||
List<UUID> getTargets(Ability source);
|
||||
UUID getFirst(Ability source);
|
||||
void init(Game game, Ability source);
|
||||
List<UUID> getTargets(Game game, Ability source);
|
||||
UUID getFirst(Game game, Ability source);
|
||||
TargetPointer copy();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue