mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +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;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author noxx
|
||||
*/
|
||||
public interface Builder<T> {
|
||||
public interface Builder<T> extends Serializable {
|
||||
public T build(Object... options);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue