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

11 lines
290 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) {
this.element = makeDiv(parent, "ingame_HUD_BetaOverlay", [], "BETA VERSION");
2020-05-09 16:45:23 +02:00
}
initialize() {}
}