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