Package net.minecraftforge.common

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

Related Classes of net.minecraftforge.common.IExtendedEntityProperties

Copyright © 2018 www.massapicom. 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.