ICostVisitor add CostChooseColor

This commit is contained in:
Northmoc
2022-08-17 15:25:13 -04:00
parent 4970359dfa
commit dd262636a2

View File

@@ -3,6 +3,7 @@ package forge.game.cost;
public interface ICostVisitor<T> { public interface ICostVisitor<T> {
T visit(CostGainControl cost); T visit(CostGainControl cost);
T visit(CostChooseColor cost);
T visit(CostChooseCreatureType cost); T visit(CostChooseCreatureType cost);
T visit(CostDiscard cost); T visit(CostDiscard cost);
T visit(CostDamage cost); T visit(CostDamage cost);
@@ -40,6 +41,11 @@ public interface ICostVisitor<T> {
return null; return null;
} }
@Override
public T visit(CostChooseColor cost) {
return null;
}
@Override @Override
public T visit(CostChooseCreatureType cost) { public T visit(CostChooseCreatureType cost) {
return null; return null;