mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-24 22:07:59 +01:00
7 lines
161 B
Java
7 lines
161 B
Java
package com.minelittlepony.unicopia.player;
|
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
public interface IUpdatable<T extends Entity> {
|
|
void onUpdate(T entity);
|
|
}
|