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

com.mojang.brigadier.ResultConsumer Maven / Gradle / Ivy

There is a newer version: 1.09.0
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

package com.mojang.brigadier;

import com.mojang.brigadier.context.CommandContext;

@FunctionalInterface
public interface ResultConsumer {
    void onCommandComplete(CommandContext context, boolean success, int result);
}