com.mojang.brigadier.AmbiguityConsumer Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
package com.mojang.brigadier;
import com.mojang.brigadier.tree.CommandNode;
import java.util.Collection;
@FunctionalInterface
public interface AmbiguityConsumer {
void ambiguous(final CommandNode parent, final CommandNode child, final CommandNode sibling, final Collection inputs);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy