UNPKG

@levimc-lse/interface-api

Version:

API for the logic tree development framework that supports cross-plugin UI queues at runtime in Minecraft Legacy Script Engine.

7 lines 222 B
import { LevelType } from "./LevelType"; export interface LevelBase { render(playerIdentifier: string): Promise<void>; getType(): LevelType; getOccupiedTicks(): number; } //# sourceMappingURL=LevelBase.d.ts.map