@moderrkowo/jsgl
Version:
Client-side JavaScript library for creating web 2D games. Focusing at objective game.
14 lines (13 loc) • 411 B
TypeScript
import { ExampleHTMLProperties } from '../structs/ExampleHTMLProperties';
/**
* Helps with creating game page.
* @group Tools
*/
export declare class ExampleHTML {
/**
* Creates HTML game page with given properties.
* Page is sized to viewport and canvas is centered.
* @param props The properties.
*/
static Render(props: ExampleHTMLProperties | undefined): void;
}