mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
NotSerializableException fix
This commit is contained in:
parent
72ca542e99
commit
68dfe88b7a
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue