mirror of
https://github.com/photonstorm/phaser
synced 2024-11-22 12:43:26 +00:00
26 lines
576 B
TypeScript
26 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);
|
|
}
|