mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
12 lines
408 B
TypeScript
12 lines
408 B
TypeScript
import { getElementById } from "./getElementById";
|
|
import { removeElementById } from "./removeElementById";
|
|
|
|
/**
|
|
* Routes the player from the Loading screen to the main game content.
|
|
*/
|
|
export function removeLoadingScreen(): void {
|
|
// TODO: Have this manipulate CSS classes instead of direct styles
|
|
removeElementById("loader");
|
|
getElementById("entire-game-container").style.visibility = "visible";
|
|
}
|