mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-02-17 02:22:23 +01:00
fix arrows
This commit is contained in:
@ -5,9 +5,9 @@ export function random(min: number, max: number): number {
|
||||
}
|
||||
|
||||
export const upArrowSymbol = "↑";
|
||||
export const downArrowSymbol = "↑";
|
||||
export const leftArrowSymbol = "↑";
|
||||
export const rightArrowSymbol = "↑";
|
||||
export const downArrowSymbol = "↓";
|
||||
export const leftArrowSymbol = "←";
|
||||
export const rightArrowSymbol = "→";
|
||||
|
||||
export function getArrow(event: KeyboardEvent): string {
|
||||
switch (event.key) {
|
||||
|
Reference in New Issue
Block a user