mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-06-13 13:04:03 +00:00
16 lines
544 B
JavaScript
16 lines
544 B
JavaScript
|
import { makeDiv } from "../../../core/utils";
|
||
|
import { T } from "../../../translations";
|
||
|
import { BaseHUDPart } from "../base_hud_part";
|
||
|
|
||
|
export class HUDPuzzlePlayMetadata extends BaseHUDPart {
|
||
|
createElements(parent) {
|
||
|
this.element = makeDiv(parent, "ingame_HUD_PuzzlePlayMetadata");
|
||
|
|
||
|
this.titleElement = makeDiv(parent, "ingame_HUD_PuzzleEditorTitle");
|
||
|
// this.titleElement.innerText = T.ingame.PuzzlePlayMetadata.title;
|
||
|
this.titleElement.innerText = "tobspr's first puzzle";
|
||
|
}
|
||
|
|
||
|
initialize() {}
|
||
|
}
|