foul-magics/Mage/src/mage/abilities/MageSingleton.java
2012-07-19 09:29:17 +04:00

19 lines
550 B
Java

package mage.abilities;
/**
* Marker class for singleton abilities and effects.
* Prevents effects and abilities to get new Id across the games on the server.
* Can be used only for stateless effects and abilities.
*
* Intended to be used to avoid bugs and for performance reasons.
*
* "Must" be used for abilities that use getId() as compare parameter like:
* FlyingAbility.getInstance().getId()
* in
* permanent.getAbilities().containsKey(FlyingAbility.getInstance().getId())
*
*
* @author noxx
*/
public interface MageSingleton {
}