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