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

21 lines
389 B
JavaScript
Raw Normal View History

2021-06-18 02:10:32 +02:00
const {System, SystemLinking, SystemSocket} = require('./r3-system');
2021-06-18 13:54:08 +02:00
const R3Object = require('./r3-r3-object');
class R3 {
constructor() {
}
static version() {
2021-06-20 20:46:13 +02:00
return 'Sun Jun 20 2021 18:45:42 GMT+0000 (Coordinated Universal Time)';
}
}
2021-06-18 13:54:08 +02:00
R3.R3Object = R3Object;
R3.System = System;
R3.System.Linking = SystemLinking;
2020-04-23 15:26:54 +02:00
R3.System.Socket = SystemSocket;
module.exports = R3;