Skip to content

Commit c2f0128

Browse files
committed
Added types
1 parent 2d49a31 commit c2f0128

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Phaser/input/Pointer.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,22 +99,22 @@ module Phaser {
9999
* @property positionDown
100100
* @type {Vec2}
101101
**/
102-
public positionDown: Vec2 = null;
102+
public positionDown: Phaser.Vec2 = null;
103103

104104
/**
105105
* A Vector object containing the current position of the Pointer on the screen.
106106
* @property position
107107
* @type {Vec2}
108108
**/
109-
public position: Vec2 = null;
109+
public position: Phaser.Vec2 = null;
110110

111111
/**
112112
* A Circle object centered on the x/y screen coordinates of the Pointer.
113113
* Default size of 44px (Apple's recommended "finger tip" size)
114114
* @property circle
115115
* @type {Circle}
116116
**/
117-
public circle: Circle = null;
117+
public circle: Phaser.Circle = null;
118118

119119
/**
120120
*

0 commit comments

Comments
 (0)