mirror of
https://github.com/wassname/phaser.git
synced 2026-06-28 16:20:37 +08:00
21 lines
275 B
TypeScript
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();
|
|
|
|
}
|
|
|
|
} |