mirror of
https://github.com/wassname/phaser.git
synced 2026-08-04 13:14:14 +08:00
Plugin Support added and CameraFX re-enabled
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
/// <reference path="../Phaser/Game.ts" />
|
||||
|
||||
module Phaser {
|
||||
|
||||
export interface IPlugin {
|
||||
|
||||
game: Game;
|
||||
active: bool;
|
||||
visible: bool;
|
||||
|
||||
preUpdate();
|
||||
postUpdate();
|
||||
|
||||
preRender();
|
||||
postRender();
|
||||
|
||||
destroy();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user