mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
20 lines
No EOL
387 B
JavaScript
Executable file
20 lines
No EOL
387 B
JavaScript
Executable file
GLOBALS = { context: "Server" };
|
|
var requirejs = require('requirejs');
|
|
|
|
requirejs.config({
|
|
nodeRequire: require,
|
|
baseUrl: 'app',
|
|
deps: ['Lib/Utilities/Extensions']
|
|
});
|
|
|
|
var inspector = {};
|
|
|
|
requirejs([
|
|
"Game/Server/PipeToLobby"
|
|
],
|
|
|
|
function (PipeToLobby) {
|
|
var PipeToLobby = new PipeToLobby(process);
|
|
|
|
inspector.PipeToLobby = PipeToLobby;
|
|
}); |