org.pepsoft.worldpainter.operations.TerrainShapingOptions Maven / Gradle / Ivy
package org.pepsoft.worldpainter.operations;
/**
* Options for operations which shape the terrain.
*
* Created by Pepijn Schmitz on 18-01-17.
*/
public class TerrainShapingOptions implements OperationOptions {
public boolean isApplyTheme() {
return applyTheme;
}
public void setApplyTheme(boolean applyTheme) {
this.applyTheme = applyTheme;
}
private boolean applyTheme;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy