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

14 lines
160 B
JavaScript
Raw Normal View History

2020-02-27 17:07:46 +01:00
class System {
constructor() {
console.log('hi from system b');
2020-02-27 17:07:46 +01:00
}
static start() {
console.log('starting a system');
}
}
module.exports = System;