phaser4-rex-plugins
Version:
18 lines (15 loc) • 486 B
JavaScript
import TabPagesBase from '../../../tabpages/TabPages.js';
import BindingTargetMethods from './BindingTargetMethods.js';
import InputRowTitleWidthMethods from './InputRowTitleWidthMethods.js';
class TabPages extends TabPagesBase {
constructor(scene, config) {
super(scene, config);
this.type = 'rexTweaker.TabPages';
}
}
Object.assign(
TabPages.prototype,
BindingTargetMethods,
InputRowTitleWidthMethods,
)
export default TabPages;