import { makeDiv } from "../../../core/utils"; import { BaseHUDPart } from "../base_hud_part"; export class HUDPuzzleDLCLogo extends BaseHUDPart { createElements(parent) { this.element = makeDiv(parent, "ingame_HUD_PuzzleDLCLogo"); this.element.classList.toggle("china", G_CHINA_VERSION || G_ISBN_VERSION); parent.appendChild(this.element); } initialize() {} next() {} }