UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

25 lines 528 B
export class CursorCoalescence { /** * * @type {CursorType[]} */ cursorPriorities: CursorType[]; cursors: any[]; /** * * @param {CursorType[]} priorities */ setPriorities(priorities: CursorType[]): void; reset(): void; /** * * @param {CursorType} cursor */ add(cursor: CursorType): void; /** * @returns {CursorType} */ get(): CursorType; } import { CursorType } from "./CursorType.js"; //# sourceMappingURL=CursorCoalescence.d.ts.map