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) • 314 B
TypeScript
import { AffineMatrix } from '../../Math/affine-matrix';
import { ExcaliburGraphicsContextState } from './ExcaliburGraphicsContext';
export declare class DrawCall {
z: number;
priority: number;
renderer: string;
transform: AffineMatrix;
state: ExcaliburGraphicsContextState;
args: any[];
}