mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 05:33:35 +00:00
19 lines
340 B
TypeScript
19 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;
|
|
}
|