From 97e28ac92fa1bb77fcf52e965ae7ed6860dae837 Mon Sep 17 00:00:00 2001 From: edgarjcfn Date: Mon, 13 Oct 2014 23:27:03 +0200 Subject: [PATCH] Added the bare-minimum .d.ts file for Typescript Interoperability --- dist/phaser.plugin.isometric.d.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 dist/phaser.plugin.isometric.d.ts diff --git a/dist/phaser.plugin.isometric.d.ts b/dist/phaser.plugin.isometric.d.ts new file mode 100644 index 0000000..d6f930b --- /dev/null +++ b/dist/phaser.plugin.isometric.d.ts @@ -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; + } + } + +} \ No newline at end of file