NotSerializableException fix

This commit is contained in:
magenoxx 2012-05-28 15:36:55 +04:00
parent 72ca542e99
commit 68dfe88b7a

View file

@ -27,9 +27,11 @@
*/ */
package mage.abilities.mana.builder; package mage.abilities.mana.builder;
import java.io.Serializable;
/** /**
* @author noxx * @author noxx
*/ */
public interface Builder<T> { public interface Builder<T> extends Serializable {
public T build(Object... options); public T build(Object... options);
} }