UNPKG

@theatrejs/theatrejs

Version:

🎮 A JavaScript 2D Game Engine focused on creating pixel art games.

38 lines (32 loc) • 557 B
/** * @module EVENT_CODES/POINTER */ /** * The pointer 'POINT' event code. * @type {'Point'} * @constant * * @memberof module:EVENT_CODES/POINTER */ const POINT = 'Point'; /** * The pointer 'POSITION_X' event code. * @type {'PositionX'} * @constant * * @memberof module:EVENT_CODES/POINTER */ const POSITION_X = 'PositionX'; /** * The pointer 'POSITION_Y' event code. * @type {'PositionY'} * @constant * * @memberof module:EVENT_CODES/POINTER */ const POSITION_Y = 'PositionY'; export { POINT, POSITION_X, POSITION_Y };