AgentVerse's picture
first commit
670a607
raw
history blame contribute delete
396 Bytes
import Radio from './Radio.js';
import ObjectFactory from '../ObjectFactory.js';
import SetValue from '../../../plugins/utils/object/SetValue.js';
ObjectFactory.register('radio', function (config) {
var gameObject = new Radio(this.scene, config);
this.scene.add.existing(gameObject);
return gameObject;
});
SetValue(window, 'RexPlugins.Spinner.Radio', Radio);
export default Radio;