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/puzzle_play_metadata.js

16 lines
544 B
JavaScript
Raw Normal View History

2021-04-30 18:06:37 +00:00
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() {}
}