mirror of
https://github.com/photonstorm/phaser
synced 2024-11-27 23:20:59 +00:00
20 lines
340 B
TypeScript
20 lines
340 B
TypeScript
|
import Loader from './systems/loader';
|
||
|
/**
|
||
|
* A Base State Class.
|
||
|
*
|
||
|
* @class Phaser.State
|
||
|
* @constructor
|
||
|
*/
|
||
|
export default class State {
|
||
|
game: any;
|
||
|
settings: any;
|
||
|
sys: any;
|
||
|
children: any;
|
||
|
load: Loader;
|
||
|
constructor(config: any);
|
||
|
preUpdate(): void;
|
||
|
update(): void;
|
||
|
postUpdate(): void;
|
||
|
render(): void;
|
||
|
}
|