phaser4-rex-plugins
Version:
11 lines (8 loc) • 307 B
JavaScript
import Match from './Match.js';
import ObjectFactory from '../ObjectFactory.js';
import SetValue from '../../utils/object/SetValue.js';
ObjectFactory.register('match', function (config) {
return new Match(config);
});
SetValue(window, 'RexPlugins.Board.Match', Match);
export default Match;