// API Link: https://tfb.neocities.org/1.16.5/org/bukkit/FluidCollisionMode

namespace org.bukkit {
    /** @description Determines the collision behavior when fluids get hit during ray tracing */
    export enum fluidCollisionMode {

        /** @description Collide with all fluids */
        ALWAYS,
        /** @description Ignore fluids */
        NEVER,
        /** @description Only collide with source fluid blocks */
        SOURCE_ONLY
    }
}