mirror of
https://github.com/Wx-2025/ST-Amily2-Chat-Optimisation.git
synced 2026-06-06 09:15:50 +00:00
23 lines
607 B
JavaScript
23 lines
607 B
JavaScript
import { Module, ModuleBuilder } from './Module.js';
|
|
import { initializePlotOptimizationBindings } from '../../ui/plot-opt-bindings.js';
|
|
|
|
const builder = new ModuleBuilder()
|
|
.name('PlotOptimization')
|
|
.view('assets/Amily2-optimization.html')
|
|
.strict(true)
|
|
.required(['mount']);
|
|
|
|
export default class PlotOptModule extends Module {
|
|
constructor() {
|
|
super(builder);
|
|
}
|
|
|
|
async mount() {
|
|
if (this.el) {
|
|
this.el.id = 'amily2_plot_optimization_panel';
|
|
this.el.style.display = 'none';
|
|
}
|
|
initializePlotOptimizationBindings();
|
|
}
|
|
}
|