mirror of
https://github.com/wassname/phaser-plugin-isometric.git
synced 2026-09-09 11:28:50 +08:00
Added the bare-minimum .d.ts file for Typescript Interoperability
This commit is contained in:
Vendored
+16
@@ -0,0 +1,16 @@
|
||||
declare module Phaser.Plugin {
|
||||
class Isometric extends Phaser.Plugin {
|
||||
projector: Phaser.Plugin.Isometric.Projector;
|
||||
|
||||
constructor(game: Phaser.Game, parent: any);
|
||||
|
||||
addIsoSprite(x: number, y: number, z: number, key?: any, frame?: any, group?: Phaser.Group): Phaser.Sprite;
|
||||
}
|
||||
|
||||
module Isometric {
|
||||
class Projector {
|
||||
anchor: Phaser.Point;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user