All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fastasyncworldedit.core.extent.filter.block.DelegateFilter Maven / Gradle / Ivy

Go to download

Blazingly fast Minecraft world manipulation for artists, builders and everyone else.

There is a newer version: 2.9.2
Show newest version
package com.fastasyncworldedit.core.extent.filter.block;

import com.fastasyncworldedit.core.queue.Filter;
import com.fastasyncworldedit.core.queue.IDelegateFilter;

public abstract class DelegateFilter implements IDelegateFilter {

    private final Filter parent;

    public DelegateFilter(T parent) {
        this.parent = parent;
    }

    @Override
    @SuppressWarnings("unchecked")
    public final T getParent() {
        return (T) parent;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy