Package net.minecraft.src

Examples of net.minecraft.src.NBTTagCompound


   
    settingsFile = new File(ModLoader.getMinecraftInstance().getAppDir("minecraft"), "updateManagerSettings.dat");
    try {
      if(!settingsFile.exists()){
        settingsFile.createNewFile();
        settingsCompound = new NBTTagCompound();
       
        setBoolean("autoDownload", false);
        setBoolean("smpEnable", false);
        setInt("checkDelay", 900);
        CompressedStreamTools.writeCompressed(settingsCompound, new FileOutputStream(settingsFile));
View Full Code Here

TOP

Related Classes of net.minecraft.src.NBTTagCompound

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.