phaser4-rex-plugins
Version:
20 lines (16 loc) • 510 B
JavaScript
import PointToChild from './PointToChild.js';
import SetChildrenInteractive from './SetChildrenInteractive.js';
import AddTreeMethods from './AddTreeMethods.js';
import RemoveTreeMethods from './RemoveTreeMethods.js';
import GetTreeMethods from './GetTreeMethods.js';
var methods = {
pointToChild: PointToChild,
setChildrenInteractive: SetChildrenInteractive,
};
Object.assign(
methods,
AddTreeMethods,
RemoveTreeMethods,
GetTreeMethods,
)
export default methods;