package com.minelittlepony.unicopia.player; public interface IOwned { default void setOwner(E owner) { } E getOwner(); }