UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

20 lines 555 B
export class MinimapTerrainView extends View<HTMLElement> { /** * * @param {Rectangle} camera * @param {Vector2} worldScale * @constructor */ constructor({ camera, worldScale }: Rectangle); el: Element; /** * * @type {TerrainPreview} */ preview: TerrainPreview; terrain: ObservedValue; __setTerrain(terrain: any, oldTerrain: any): void; } import View from "../../View.js"; import ObservedValue from "../../../core/model/ObservedValue.js"; //# sourceMappingURL=MinimapTerrainView.d.ts.map