phantasmal-world/src/quest_editor/gui/AsmEditorToolBar.ts

13 lines
294 B
TypeScript
Raw Normal View History

2019-09-15 04:25:21 +08:00
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);
}
}