mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-24 22:07:59 +01:00
10 lines
197 B
Java
10 lines
197 B
Java
package com.minelittlepony.unicopia;
|
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
public interface EntitySupplier {
|
|
/**
|
|
* Gets the owner that holds this object.
|
|
*/
|
|
Entity getEntity();
|
|
}
|