* Mouse events input * @constructor * @extends Input
()
| 93066 | * @constructor |
| 93067 | * @extends Input |
| 93068 | */ function MouseInput() { |
| 93069 | this.evEl = MOUSE_ELEMENT_EVENTS; |
| 93070 | this.evWin = MOUSE_WINDOW_EVENTS; |
| 93071 | this.pressed = false; // mousedown state |
| 93072 | Input.apply(this, arguments); |
| 93073 | } |
| 93074 | inherit(MouseInput, Input, { |
| 93075 | /** |
| 93076 | * handle mouse events |
nothing calls this directly
no outgoing calls
no test coverage detected