PlotSquared/src/main/java/com/intellectualcrafters/plot/object/SetupObject.java

53 lines
1.0 KiB
Java
Raw Normal View History

2015-02-22 14:12:32 +01:00
package com.intellectualcrafters.plot.object;
import com.intellectualcrafters.plot.config.ConfigurationNode;
import com.intellectualcrafters.plot.util.SetupUtils;
2015-02-22 14:12:32 +01:00
public class SetupObject {
2015-04-21 14:48:18 +02:00
/**
* Specify a SetupUtils object here to override the existing
*/
public SetupUtils setupManager;
/**
* The current state
*/
2015-02-22 14:12:32 +01:00
public int current = 0;
2015-04-21 14:48:18 +02:00
/**
* The index in generator specific settings
*/
2015-02-22 14:12:32 +01:00
public int setup_index = 0;
2015-04-21 14:48:18 +02:00
/**
* The name of the world
*/
2015-02-22 14:12:32 +01:00
public String world = null;
2015-04-21 14:48:18 +02:00
/**
* The name of the plot manager
*/
public String plotManager = null;
/**
* The name of the generator to use for world creation
*/
public String setupGenerator = null;
/**
* The management type
*/
public int type;
/**
* The terrain type
*/
public int terrain;
/**
* Generator specific configuration steps
*/
2015-02-22 14:12:32 +01:00
public ConfigurationNode[] step = null;
}