mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
ICostVisitor add CostChooseColor
This commit is contained in:
@@ -3,6 +3,7 @@ package forge.game.cost;
|
||||
public interface ICostVisitor<T> {
|
||||
|
||||
T visit(CostGainControl cost);
|
||||
T visit(CostChooseColor cost);
|
||||
T visit(CostChooseCreatureType cost);
|
||||
T visit(CostDiscard cost);
|
||||
T visit(CostDamage cost);
|
||||
@@ -40,6 +41,11 @@ public interface ICostVisitor<T> {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public T visit(CostChooseColor cost) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public T visit(CostChooseCreatureType cost) {
|
||||
return null;
|
||||
|
||||
Reference in New Issue
Block a user