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

package com.hypixel.hytale.builtin.buildertools.tooloperations.transform;

import com.hypixel.hytale.math.vector.Vector3i;

public interface Transform
{
    public static final Transform NONE = vec -> {};
    
    void apply(final Vector3i p0);
    
    default Transform then(final Transform next) {
        return Composite.of(this, next);
    }
}
