mirror of
https://github.com/wassname/phaser.git
synced 2026-07-05 17:30:19 +08:00
16 lines
359 B
TypeScript
16 lines
359 B
TypeScript
/// <reference path="../../Game.d.ts" />
|
|
module Phaser {
|
|
class BootScreen {
|
|
constructor(game: Game);
|
|
private _game;
|
|
private _logo;
|
|
private _logoData;
|
|
private _color1;
|
|
private _color2;
|
|
private _fade;
|
|
public update(): void;
|
|
public render(): void;
|
|
private colorCycle();
|
|
}
|
|
}
|