mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-12-01 08:47:59 +01:00
7 lines
167 B
Java
7 lines
167 B
Java
package com.minelittlepony.unicopia.player;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
public interface IUpdatable {
|
|
void onUpdate(EntityPlayer entity);
|
|
}
|