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

24 lines
471 B
JavaScript
Raw Normal View History

const System = require('./r3-system.js');
const SystemLinking = require('./r3-system-linking.js');
2020-04-23 15:26:54 +02:00
const SystemSocket = require('./r3-system-socket.js');
2020-04-21 11:54:13 +02:00
const Object = require('./r3-object.js');
class R3 {
constructor() {
}
static version() {
2020-04-23 15:26:54 +02:00
return 'Thu Apr 23 2020 14:42:47 GMT+0200 (Central European Summer Time)';
}
}
2020-04-21 11:54:13 +02:00
R3.Object = Object;
R3.System = System;
R3.System.Linking = SystemLinking;
2020-04-23 15:26:54 +02:00
R3.System.Socket = SystemSocket;
module.exports = R3;