phaser/Plugins/IPlugin.ts
2013-08-02 19:37:43 +01:00

21 lines
No EOL
275 B
TypeScript

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