UNPKG

excalibur

Version:

Excalibur.js is a simple JavaScript game engine with TypeScript bindings for making 2D games in HTML5 Canvas. Our mission is to make web game development as simple as possible.

14 lines (13 loc) 278 B
/** * An enum that represents the types of emitter nozzles */ export declare enum EmitterType { /** * Constant for the circular emitter type */ Circle = "circle", /** * Constant for the rectangular emitter type */ Rectangle = "rectangle" }