forked from External/mage
Restructured Mage module
This commit is contained in:
parent
727d62babb
commit
46eb6c0525
1502 changed files with 11 additions and 9 deletions
|
|
@ -0,0 +1,14 @@
|
|||
package mage.target.targetpointer;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
import mage.abilities.Ability;
|
||||
import mage.game.Game;
|
||||
|
||||
public interface TargetPointer extends Serializable {
|
||||
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