Package org.spout.vanilla.data.resources

Examples of org.spout.vanilla.data.resources.MapPalette


  @Override
  public MapPalette load(InputStream in) {
    try {
      in = new GZIPInputStream(in);
      MapPalette res = new MapPalette();
      res.read(in);
      return res;
    } catch (IOException e) {
      e.printStackTrace();
    } finally {
      try {
View Full Code Here

TOP

Related Classes of org.spout.vanilla.data.resources.MapPalette

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.