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

package com.hypixel.hytale.server.worldgen.util.condition.flag;

import java.util.function.IntUnaryOperator;

@FunctionalInterface
public interface Int2FlagsCondition extends IntUnaryOperator
{
    int eval(final int p0);
    
    default int applyAsInt(final int operand) {
        return this.eval(operand);
    }
}
