mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
Some fixes to "Remove license headers" (#4998).
This commit is contained in:
parent
c4212a0d9e
commit
b17858d910
24 changed files with 219 additions and 272 deletions
|
|
@ -1,19 +1,20 @@
|
|||
/*
|
||||
|
||||
package mage.abilities.costs;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.game.Game;
|
||||
|
||||
/**
|
||||
* Interface for abilities that adjust source and only source costs.
|
||||
* For the cases when some permanent adjusts costs of other spells use {@link mage.abilities.effects.CostModificationEffect}.
|
||||
* Interface for abilities that adjust source and only source costs. For the
|
||||
* cases when some permanent adjusts costs of other spells use
|
||||
* {@link mage.abilities.effects.CostModificationEffect}.
|
||||
*
|
||||
* Example of such source costs adjusting: {@link mage.abilities.keyword.AffinityForArtifactsAbility}
|
||||
* Example of such source costs adjusting:
|
||||
* {@link mage.abilities.keyword.AffinityForArtifactsAbility}
|
||||
*
|
||||
* @author nantuko
|
||||
*/
|
||||
@FunctionalInterface
|
||||
public interface AdjustingSourceCosts {
|
||||
|
||||
void adjustCosts(Ability ability, Game game);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue