mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-23 12:58:01 +01:00
17 lines
439 B
Java
17 lines
439 B
Java
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();
|
|
|
|
/**
|
|
* Quick cast back to the original type.
|
|
*/
|
|
default NetworkPlayerInfo unwrap() {
|
|
return (NetworkPlayerInfo)this;
|
|
}
|
|
}
|