Package buildcraft.core

Examples of buildcraft.core.CoreIconProvider


  @SubscribeEvent
  @SideOnly(Side.CLIENT)
  public void textureHook(TextureStitchEvent.Pre event) {
    if (event.map.getTextureType() == 1) {
      iconProvider = new CoreIconProvider();
      iconProvider.registerIcons(event.map);
      EnumColor.registerIcons(event.map);
    } else if (event.map.getTextureType() == 0) {
      BuildCraftCore.redLaserTexture = event.map.registerIcon("buildcraft:blockRedLaser");
      BuildCraftCore.blueLaserTexture = event.map.registerIcon("buildcraft:blockBlueLaser");
View Full Code Here

TOP

Related Classes of buildcraft.core.CoreIconProvider

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.