Package cofh.repack.codechicken.lib.colour

Examples of cofh.repack.codechicken.lib.colour.ColourARGB


  public static Colour[] loadTextureColours(ResourceLocation resource) {

    int[] idata = loadTextureData(resource);
    Colour[] data = new Colour[idata.length];
    for (int i = 0; i < data.length; i++) {
      data[i] = new ColourARGB(idata[i]);
    }
    return data;
  }
View Full Code Here

TOP

Related Classes of cofh.repack.codechicken.lib.colour.ColourARGB

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.