@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
14 lines (13 loc) • 391 B
TypeScript
import IBlockTraits from "./IBlockTraits";
export default interface IBlockTypeDescription {
identifier: string;
category?: string;
register_to_creative_menu?: boolean;
properties?: {
[id: string]: number[] | string[] | boolean[] | undefined;
};
states?: {
[id: string]: number[] | string[] | boolean[] | undefined;
};
traits?: IBlockTraits;
}