mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-24 22:07:59 +01:00
12 lines
141 B
Java
12 lines
141 B
Java
|
package com.minelittlepony.unicopia.player;
|
||
|
|
||
|
public interface IOwned<E> {
|
||
|
|
||
|
default void setOwner(E owner) {
|
||
|
|
||
|
}
|
||
|
|
||
|
E getOwner();
|
||
|
|
||
|
}
|