UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

12 lines (11 loc) 308 B
import NbtBinaryTag from "../NbtBinaryTag"; export default abstract class BlockActor { rootTag: NbtBinaryTag; x: number | undefined; y: number | undefined; z: number | undefined; id?: string; isMovable?: boolean; constructor(rootTagIn: NbtBinaryTag); abstract load(): void; }