phaser/Phaser/system/screens/PauseScreen.d.ts
2013-05-01 04:10:21 +01:00

17 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();
}
}