mirror of
https://github.com/wassname/phaser.git
synced 2026-07-13 01:00:12 +08:00
18 lines
455 B
TypeScript
18 lines
455 B
TypeScript
/// <reference path="../../Game.d.ts" />
|
|
module Phaser {
|
|
class PauseScreen {
|
|
constructor(game: Game, width: number, height: number);
|
|
private _game;
|
|
private _canvas;
|
|
private _context;
|
|
private _color;
|
|
private _fade;
|
|
public onPaused(): void;
|
|
public onResume(): void;
|
|
public update(): void;
|
|
public render(): void;
|
|
private fadeOut();
|
|
private fadeIn();
|
|
}
|
|
}
|