mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
25 lines
No EOL
522 B
JavaScript
Executable file
25 lines
No EOL
522 B
JavaScript
Executable file
GLOBALS = { context: "Server" };
|
|
var requirejs = require('requirejs');
|
|
|
|
requirejs.config({
|
|
nodeRequire: require,
|
|
baseUrl: 'app',
|
|
deps: ['Lib/Utilities/Extensions']
|
|
});
|
|
|
|
var inspector = {};
|
|
|
|
console.checkpoint = function (s) {
|
|
console.log(' \033[34mbeep - \033[0m' + s);
|
|
}
|
|
|
|
requirejs([
|
|
"Game/Server/PipeToLobby",
|
|
"Game/Core/NotificationCenter"
|
|
],
|
|
|
|
function (PipeToLobby, nc) {
|
|
var PipeToLobby = new PipeToLobby(process);
|
|
|
|
inspector.PipeToLobby = PipeToLobby;
|
|
}); |