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.

11 lines (10 loc) 248 B
/** * Higher priorities run earlier than others in the system update */ export declare const SystemPriority: { readonly Highest: number; readonly Higher: -5; readonly Average: 0; readonly Lower: 5; readonly Lowest: number; };