From c2f0128797434b50da01749d0cd66138b1b3d7fb Mon Sep 17 00:00:00 2001 From: Richard Davey Date: Fri, 9 Aug 2013 16:54:46 +0100 Subject: [PATCH] Added types --- Phaser/input/Pointer.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Phaser/input/Pointer.ts b/Phaser/input/Pointer.ts index ae7e4a25..4f3d5cf7 100644 --- a/Phaser/input/Pointer.ts +++ b/Phaser/input/Pointer.ts @@ -99,14 +99,14 @@ module Phaser { * @property positionDown * @type {Vec2} **/ - public positionDown: Vec2 = null; + public positionDown: Phaser.Vec2 = null; /** * A Vector object containing the current position of the Pointer on the screen. * @property position * @type {Vec2} **/ - public position: Vec2 = null; + public position: Phaser.Vec2 = null; /** * A Circle object centered on the x/y screen coordinates of the Pointer. @@ -114,7 +114,7 @@ module Phaser { * @property circle * @type {Circle} **/ - public circle: Circle = null; + public circle: Phaser.Circle = null; /** *