juno-console
Version:
Juno is a clean and lightweight 2D game framework written in TypeScript for making tiny HTML5 Games.
18 lines (16 loc) • 357 B
text/typescript
/**
* @author Digitsensitive <digit.sensitivee@gmail.com>
* @copyright 2018 Digitsensitive
* @description Juno: KEY Enum
* @license {@link https://github.com/digitsensitive/juno-console/blob/master/license.txt|MIT License}
*/
export enum KEY {
UP = 38,
DOWN = 40,
LEFT = 37,
RIGHT = 39,
A = 65,
B = 66,
X = 88,
Z = 89
}