
com.mojang.brigadier.context.SuggestionContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of khl Show documentation
Show all versions of khl Show documentation
Java sdk for Kaiheila bot development
// 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy