mirror of
https://github.com/photonstorm/phaser
synced 2024-12-19 01:24:48 +00:00
27 lines
576 B
TypeScript
27 lines
576 B
TypeScript
|
export default class Config {
|
||
|
private static defaultBannerColor;
|
||
|
private static defaultBannerTextColor;
|
||
|
width: any;
|
||
|
height: any;
|
||
|
resolution: any;
|
||
|
renderType: any;
|
||
|
parent: any;
|
||
|
canvas: any;
|
||
|
canvasStyle: any;
|
||
|
stateConfig: any;
|
||
|
seed: any;
|
||
|
gameTitle: any;
|
||
|
gameURL: any;
|
||
|
gameVersion: any;
|
||
|
hideBanner: any;
|
||
|
hidePhaser: any;
|
||
|
bannerTextColor: any;
|
||
|
bannerBackgroundColor: any;
|
||
|
forceSetTimeOut: any;
|
||
|
transparent: any;
|
||
|
pixelArt: any;
|
||
|
preBoot: any;
|
||
|
postBoot: any;
|
||
|
constructor(config: any);
|
||
|
}
|