1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-06-13 13:04:03 +00:00
tobspr_shapez.io/src/js/game/hud/parts/beta_overlay.js

16 lines
417 B
JavaScript
Raw Normal View History

2020-05-09 14:45:23 +00:00
import { BaseHUDPart } from "../base_hud_part";
import { makeDiv } from "../../../core/utils";
export class HUDBetaOverlay extends BaseHUDPart {
createElements(parent) {
2020-09-28 11:17:21 +00:00
this.element = makeDiv(
parent,
"ingame_HUD_BetaOverlay",
[],
2020-10-07 17:12:49 +00:00
"<h2>UNSTABLE BETA VERSION</h2><span>Unfinalized & potential buggy content!</span>"
2020-09-28 11:17:21 +00:00
);
2020-05-09 14:45:23 +00:00
}
initialize() {}
}