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

com.mojang.brigadier.Command 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;
import com.mojang.brigadier.exceptions.CommandSyntaxException;

@FunctionalInterface
public interface Command {
    int SINGLE_SUCCESS = 1;

    int run(CommandContext context) throws CommandSyntaxException;
}