// 
// Decompiled by Procyon v0.6.0
// 

package com.hypixel.hytale.builtin.buildertools.prefabeditor.saving;

public class PrefabSaverSettings
{
    private boolean relativize;
    private boolean overwriteExisting;
    private boolean empty;
    private boolean blocks;
    private boolean entities;
    private boolean keepAnchors;
    
    public boolean isRelativize() {
        return this.relativize;
    }
    
    public void setRelativize(final boolean relativize) {
        this.relativize = relativize;
    }
    
    public boolean isOverwriteExisting() {
        return this.overwriteExisting;
    }
    
    public void setOverwriteExisting(final boolean overwriteExisting) {
        this.overwriteExisting = overwriteExisting;
    }
    
    public boolean isEmpty() {
        return this.empty;
    }
    
    public void setEmpty(final boolean empty) {
        this.empty = empty;
    }
    
    public boolean isBlocks() {
        return this.blocks;
    }
    
    public void setBlocks(final boolean blocks) {
        this.blocks = blocks;
    }
    
    public boolean isEntities() {
        return this.entities;
    }
    
    public void setEntities(final boolean entities) {
        this.entities = entities;
    }
    
    public boolean isKeepAnchors() {
        return this.keepAnchors;
    }
    
    public void setKeepAnchors(final boolean keepAnchors) {
        this.keepAnchors = keepAnchors;
    }
}
