forked from External/mage
Fade in\fade out effects for adding and removing permanents.
This commit is contained in:
parent
55eba04697
commit
850f931bc7
9 changed files with 109 additions and 65 deletions
|
|
@ -167,4 +167,18 @@ public class Plugins implements MagePlugins {
|
|||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onAddCard(MagePermanent card) {
|
||||
if (this.cardPlugin != null) {
|
||||
this.cardPlugin.onAddCard(card);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onRemoveCard(MagePermanent card) {
|
||||
if (this.cardPlugin != null) {
|
||||
this.cardPlugin.onRemoveCard(card);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue