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

22 lines
383 B
JavaScript
Raw Normal View History

const System = require('./r3-system.js');
const SystemLinking = require('./r3-system-linking.js');
2020-04-21 11:54:13 +02:00
const Object = require('./r3-object.js');
class R3 {
constructor() {
}
static version() {
2020-04-21 11:54:13 +02:00
return 'Tue Apr 21 2020 11:52:51 GMT+0200 (Central European Summer Time)';
}
}
2020-04-21 11:54:13 +02:00
R3.Object = Object;
R3.System = System;
R3.System.Linking = SystemLinking;
module.exports = R3;