This repository has been archived on 2021-02-20. You can view files and clone it, but cannot push or open issues or pull requests.
shapez.io/src/js/game/hud/parts/beta_overlay.js

16 lines
432 B
JavaScript
Raw Normal View History

2020-05-09 16:45:23 +02:00
import { BaseHUDPart } from "../base_hud_part";
import { makeDiv } from "../../../core/utils";
export class HUDBetaOverlay extends BaseHUDPart {
createElements(parent) {
2020-09-28 13:17:21 +02:00
this.element = makeDiv(
parent,
"ingame_HUD_BetaOverlay",
[],
"<h2>CLOSED BETA VERSION</h2><span>This version is unstable, might crash and is not final!</span>"
);
2020-05-09 16:45:23 +02:00
}
initialize() {}
}