mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-08 01:01:36 +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);
|
||
|
}
|
||
|
}
|