UNPKG

@theatrejs/theatrejs

Version:

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

124 lines (110 loc) • 2.01 kB
/** * The STANDARD-based keyboard 'F1' event code. * @type {'F1'} * @constant * * @memberof module:EVENT_CODES/KEYBOARDS/STANDARD */ const F1 = 'F1'; /** * The STANDARD-based keyboard 'F2' event code. * @type {'F2'} * @constant * * @memberof module:EVENT_CODES/KEYBOARDS/STANDARD */ const F2 = 'F2'; /** * The STANDARD-based keyboard 'F3' event code. * @type {'F3'} * @constant * * @memberof module:EVENT_CODES/KEYBOARDS/STANDARD */ const F3 = 'F3'; /** * The STANDARD-based keyboard 'F4' event code. * @type {'F4'} * @constant * * @memberof module:EVENT_CODES/KEYBOARDS/STANDARD */ const F4 = 'F4'; /** * The STANDARD-based keyboard 'F5' event code. * @type {'F5'} * @constant * * @memberof module:EVENT_CODES/KEYBOARDS/STANDARD */ const F5 = 'F5'; /** * The STANDARD-based keyboard 'F6' event code. * @type {'F6'} * @constant * * @memberof module:EVENT_CODES/KEYBOARDS/STANDARD */ const F6 = 'F6'; /** * The STANDARD-based keyboard 'F7' event code. * @type {'F7'} * @constant * * @memberof module:EVENT_CODES/KEYBOARDS/STANDARD */ const F7 = 'F7'; /** * The STANDARD-based keyboard 'F8' event code. * @type {'F8'} * @constant * * @memberof module:EVENT_CODES/KEYBOARDS/STANDARD */ const F8 = 'F8'; /** * The STANDARD-based keyboard 'F9' event code. * @type {'F9'} * @constant * * @memberof module:EVENT_CODES/KEYBOARDS/STANDARD */ const F9 = 'F9'; /** * The STANDARD-based keyboard 'F10' event code. * @type {'F10'} * @constant * * @memberof module:EVENT_CODES/KEYBOARDS/STANDARD */ const F10 = 'F10'; /** * The STANDARD-based keyboard 'F11' event code. * @type {'F11'} * @constant * * @memberof module:EVENT_CODES/KEYBOARDS/STANDARD */ const F11 = 'F11'; /** * The STANDARD-based keyboard 'F12' event code. * @type {'F12'} * @constant * * @memberof module:EVENT_CODES/KEYBOARDS/STANDARD */ const F12 = 'F12'; export { F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12 };