mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
16 lines
213 B
Java
16 lines
213 B
Java
|
|
|
|
package mage;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.UUID;
|
|
|
|
/**
|
|
*
|
|
* @author BetaSteward_at_googlemail.com
|
|
*/
|
|
@FunctionalInterface
|
|
public interface MageItem extends Serializable {
|
|
|
|
UUID getId();
|
|
}
|