@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
21 lines (20 loc) • 380 B
TypeScript
export declare enum ToolScope {
global = 0,
project = 1
}
export declare enum ToolType {
executeGameTest = 0,
runCommand = 1,
pushStructure = 2,
reload = 3,
say = 4,
playSound = 5,
customTool = 6
}
export default interface ITool {
title: string;
type: ToolType;
scope: ToolScope;
parameter1?: string;
parameter2?: string;
}