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

22 lines
383 B
JavaScript

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