UNPKG

@moderrkowo/jsgl

Version:

Client-side JavaScript library for creating web 2D games. Focusing at objective game.

11 lines (10 loc) 374 B
import { Game } from '../Game'; import { ExampleHTMLProperties } from '../structs/ExampleHTMLProperties'; import { GameSettings } from '../structs/GameSettings'; /** * Helps with creating game page. * @group Tools */ export declare class DefaultGame { static Create(gameProps?: GameSettings, pageProps?: ExampleHTMLProperties, canvasSize?: number): Game; }