mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-20 16:22:56 +02:00
[refactor] Breaking out key codes
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.
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
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,
|
||||
};
|
||||
Reference in New Issue
Block a user