/**
* @module INPUT_CODES/POINTER
*/
/**
* The pointer 'POINT' input code.
* @type {'Point'}
* @constant
*
* @memberof module:INPUT_CODES/POINTER
*/
const POINT = 'Point';
/**
* The pointer 'POSITION_X' input code.
* @type {'PositionX'}
* @constant
*
* @memberof module:INPUT_CODES/POINTER
*/
const POSITION_X = 'PositionX';
/**
* The pointer 'POSITION_Y' input code.
* @type {'PositionY'}
* @constant
*
* @memberof module:INPUT_CODES/POINTER
*/
const POSITION_Y = 'PositionY';
export {
POINT,
POSITION_X,
POSITION_Y
};