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

com.mojang.brigadier.context.SuggestionContext 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.context;

import com.mojang.brigadier.tree.CommandNode;

public class SuggestionContext {
    public final CommandNode parent;
    public final int startPos;

    public SuggestionContext(CommandNode parent, int startPos) {
        this.parent = parent;
        this.startPos = startPos;
    }
}