mirror of
https://github.com/photonstorm/phaser
synced 2025-02-16 22:18:29 +00:00
21 lines
No EOL
275 B
TypeScript
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();
|
|
|
|
}
|
|
|
|
} |