@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
14 lines (13 loc) • 464 B
TypeScript
import IBlockEvent from "./IBlockEvent";
import IBlockTypeDescription from "./IBlockTypeDescription";
import IComponentDataItem from "./IComponentDataItem";
export default interface IBlockTypeBehaviorPack extends IComponentDataItem {
description: IBlockTypeDescription;
permutations?: IBlockPermutation[];
events?: {
[name: string]: IBlockEvent;
};
}
export interface IBlockPermutation extends IComponentDataItem {
condition: string;
}