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

com.mojang.brigadier.SingleRedirectModifier 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 SingleRedirectModifier {
    S apply(CommandContext context) throws CommandSyntaxException;
}