
com.mojang.brigadier.Command Maven / Gradle / Ivy
// 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;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy