Examples of IExtendedEntityProperties


Examples of net.minecraftforge.common.IExtendedEntityProperties

    }
    return identifier;
  }
 
  public static <T extends IExtendedEntityProperties> T getProperties(Entity entity, Class<T> propertiesClass) {
    IExtendedEntityProperties properties = entity.getExtendedProperties(getIdentifier(propertiesClass));
    return (propertiesClass.isInstance(properties) ? (T)properties : null);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.