mirror of
https://github.com/photonstorm/phaser
synced 2024-11-10 07:04:31 +00:00
Added types
This commit is contained in:
parent
2d49a31ecd
commit
c2f0128797
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue