mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-28 15:38:00 +01:00
12 lines
248 B
Java
12 lines
248 B
Java
package com.minelittlepony.unicopia.entity;
|
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
/**
|
|
* Generic container for an entity that has a race.
|
|
*
|
|
* @param <T> The type of owner
|
|
*/
|
|
public interface RaceContainer<T extends Entity> extends Ponylike {
|
|
|
|
}
|