UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

11 lines (7 loc) 249 B
import { world, WorldLoadAfterEvent } from "@minecraft/server"; import Challenge from "./Challenge.js"; const cv = new Challenge(); world.afterEvents.worldLoad.subscribe(worldInit); function worldInit(event: WorldLoadAfterEvent) { cv.init(); }