Files
phaser/Plugins/IPlugin.ts
T

21 lines
275 B
TypeScript

/// <reference path="../Phaser/Game.ts" />
module Phaser {
export interface IPlugin {
game: Game;
active: bool;
visible: bool;
preUpdate();
postUpdate();
preRender();
postRender();
destroy();
}
}