forked from External/mage
* simulated games was able to change objects from another games (ConcurrentModificationException, related tod202278ccd, details in3a6cdd2615); * AI: fixed cards disappear in multiplayer games with computer (details in #6738);
9 lines
137 B
Java
9 lines
137 B
Java
package mage.util;
|
|
|
|
/**
|
|
* @author BetaSteward_at_googlemail.com
|
|
*/
|
|
@FunctionalInterface
|
|
public interface Copyable<T> {
|
|
T copy();
|
|
}
|