const Event = require('./r3-event'); class R3Object extends Event { constructor(options) { super(options); console.log('Object created'); this.emit(Event.OBJECT_CREATED); } } module.exports = R3Object;