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