mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
Checkstyle.
This commit is contained in:
@@ -183,12 +183,10 @@ public abstract class CostPart {
|
|||||||
/**
|
/**
|
||||||
* Decide ai payment.
|
* Decide ai payment.
|
||||||
*
|
*
|
||||||
* @param ability
|
* @param ai {@link forge.player.Player}
|
||||||
* the ability
|
* @param ability {@link forge.card.spellability.SpellAbility}
|
||||||
* @param source
|
* @param source {@link forge.Card}
|
||||||
* the source
|
* @param payment {@link forge.card.cost.CostPayment}
|
||||||
* @param payment
|
|
||||||
* the payment
|
|
||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public abstract boolean decideAIPayment(final Player ai, SpellAbility ability, Card source, CostPayment payment);
|
public abstract boolean decideAIPayment(final Player ai, SpellAbility ability, Card source, CostPayment payment);
|
||||||
@@ -196,24 +194,19 @@ public abstract class CostPart {
|
|||||||
/**
|
/**
|
||||||
* Pay ai.
|
* Pay ai.
|
||||||
*
|
*
|
||||||
* @param ability
|
* @param ai {@link forge.player.Player}
|
||||||
* the ability
|
* @param ability {@link forge.card.spellability.SpellAbility}
|
||||||
* @param source
|
* @param source {@link forge.Card}
|
||||||
* the source
|
* @param payment {@link forge.card.cost.CostPayment}
|
||||||
* @param payment
|
|
||||||
* the payment
|
|
||||||
*/
|
*/
|
||||||
public abstract void payAI(final Player ai, SpellAbility ability, Card source, CostPayment payment);
|
public abstract void payAI(final Player ai, SpellAbility ability, Card source, CostPayment payment);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Pay human.
|
* Pay human.
|
||||||
*
|
*
|
||||||
* @param ability
|
* @param ability {@link forge.card.spellability.SpellAbility}
|
||||||
* the ability
|
* @param source {@link forge.Card}
|
||||||
* @param source
|
* @param payment {@link forge.card.cost.CostPayment}
|
||||||
* the source
|
|
||||||
* @param payment
|
|
||||||
* the payment
|
|
||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public abstract boolean payHuman(SpellAbility ability, Card source, CostPayment payment);
|
public abstract boolean payHuman(SpellAbility ability, Card source, CostPayment payment);
|
||||||
|
|||||||
Reference in New Issue
Block a user