DCSOlympus/client/src/toolbars/primarytoolbar.ts
2023-09-08 22:41:37 +02:00

13 lines
373 B
TypeScript

import { Dropdown } from "../controls/dropdown";
import { Toolbar } from "./toolbar";
export class PrimaryToolbar extends Toolbar {
constructor(ID: string) {
super(ID);
// TODO move here all code about primary toolbar
/* The content of the dropdown is entirely defined in the .ejs file */
new Dropdown("app-icon", () => { });
}
}