r3-v2/dist/r3-node/r3-system-linking.js

25 lines
302 B
JavaScript

const System = require('./r3-system.js');
class LinkingSystem extends System {
constructor() {
super();
console.log('hi there from linking system 2');
}
static start() {
super.start();
console.log('starting linking system');
return true;
}
}
module.exports = LinkingSystem;