MapComplete/UI/ProfessionalGui.ts

16 lines
305 B
TypeScript
Raw Normal View History

2021-11-25 02:50:43 +01:00
import {FixedUiElement} from "./Base/FixedUiElement";
export default class ProfessionalGui {
constructor() {
new FixedUiElement("Hello world").AttachTo("main")
}
}
console.log("Hello world")
new FixedUiElement("").AttachTo("decoration-desktop")
new ProfessionalGui()