MineLittlePony/src/main/java/com/minelittlepony/ducks/IPlayerInfo.java

15 lines
378 B
Java
Raw Normal View History

package com.minelittlepony.ducks;
import net.minecraft.client.network.NetworkPlayerInfo;
public interface IPlayerInfo {
/**
* Returns true if the vanilla skin (the one returned by NetworkPlayerInfo.getSkinLocation) uses the ALEX model type.
*/
boolean usesSlimArms();
default NetworkPlayerInfo unwrap() {
return (NetworkPlayerInfo)this;
}
}