import * as babylon from "babylonjs"; import { StateEntry } from "../../../interfaces"; export interface MechanicEntry extends StateEntry { type: "Mechanic"; } export interface WorldObject { label: string; babylonMesh: babylon.AbstractMesh; } export interface ErrorReport { id?: string; label: string; message: string; }