10 lines
143 B
JavaScript
Raw Normal View History

2025-02-25 13:59:26 +01:00
export class MainMenu {
constructor(uiService) {
this.ui = uiService;
}
show = () => {
this.ui.showInfoMessage("hello");
};
}