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

25 lines
302 B
JavaScript
Raw Normal View History

const System = require('./r3-system.js');
2020-02-27 17:07:46 +01:00
class LinkingSystem extends System {
constructor() {
super();
console.log('hi there from linking system 2');
2020-02-27 17:07:46 +01:00
}
static start() {
super.start();
console.log('starting linking system');
return true;
2020-02-27 17:07:46 +01:00
}
}
module.exports = LinkingSystem;