Package abo

Source Code of abo.ABOConfiguration

/**
* Copyright (C) 2011-2013 Flow86
*
* AdditionalBuildcraftObjects is open-source.
*
* It is distributed under the terms of my Open Source License.
* It grants rights to read, modify, compile or run the code.
* It does *NOT* grant the right to redistribute this software or its
* modifications in any form, binary or source, except if expressively
* granted by the copyright holder.
*/

package abo;

import java.io.File;

import net.minecraftforge.common.Configuration;
import net.minecraftforge.common.Property;

/**
* @author Flow86
*
*/
public class ABOConfiguration extends Configuration {
  public ABOConfiguration(File file) {
    super(file);
  }

  @Override
  public void save() {
    Property versionProp = null;

    get(CATEGORY_GENERAL, "version", ABO.VERSION);

    super.save();
  }
}
TOP

Related Classes of abo.ABOConfiguration

TOP
Copyright © 2018 www.massapi.com. 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.