mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-06 08:08:28 +08:00
13 lines
294 B
TypeScript
13 lines
294 B
TypeScript
import { ToolBar } from "../../core/gui/ToolBar";
|
|
import { Button } from "../../core/gui/Button";
|
|
|
|
export class AsmEditorToolBar extends ToolBar {
|
|
constructor() {
|
|
|
|
super({
|
|
children: [],
|
|
});
|
|
this.finalize_construction(AsmEditorToolBar.prototype);
|
|
}
|
|
}
|