@theatrejs/theatrejs
Version:
🎮 A JavaScript 2D Game Engine focused on creating pixel art games.
48 lines (41 loc) • 720 B
JavaScript
/**
* @module EVENTCODES/POINTER
*/
/**
* The pointer 'POINT' event code.
* @type {'Point'}
* @constant
*
* @memberof module:EVENTCODES/POINTER
*/
const POINT = 'Point';
/**
* The pointer 'POSITION' event code.
* @type {'Position'}
* @constant
*
* @memberof module:EVENTCODES/POINTER
*/
const POSITION = 'Position';
/**
* The pointer 'POSITION_X' event code.
* @type {'PositionX'}
* @constant
*
* @memberof module:EVENTCODES/POINTER
*/
const POSITION_X = 'PositionX';
/**
* The pointer 'POSITION_Y' event code.
* @type {'PositionY'}
* @constant
*
* @memberof module:EVENTCODES/POINTER
*/
const POSITION_Y = 'PositionY';
export {
POINT,
POSITION,
POSITION_X,
POSITION_Y
};