mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
0bea4e0430
Trying to start breaking apart the large circular dependencies between modules. Most of the dependencies are similar to this pattern where there is one stand-alone member that is needed, so the entire module gets brought along with.
31 lines
660 B
TypeScript
31 lines
660 B
TypeScript
import { IMap } from "../../src/types";
|
|
|
|
/**
|
|
* Keyboard key codes
|
|
*/
|
|
export const KEY: IMap<number> = {
|
|
A: 65,
|
|
B: 66,
|
|
C: 67,
|
|
CTRL: 17,
|
|
D: 68,
|
|
DOWNARROW: 40,
|
|
E: 69,
|
|
ENTER: 13,
|
|
F: 70,
|
|
H: 72,
|
|
J: 74,
|
|
K: 75,
|
|
L: 76,
|
|
M: 77,
|
|
N: 78,
|
|
O: 79,
|
|
P: 80,
|
|
R: 82,
|
|
S: 83,
|
|
TAB: 9,
|
|
U: 85,
|
|
UPARROW: 38,
|
|
W: 87,
|
|
};
|