Skip to content

Commit

Permalink
cosmetic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Gary Weiss committed Feb 1, 2019
1 parent 2d8d317 commit 28636fa
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 29 deletions.
8 changes: 4 additions & 4 deletions main.js
Expand Up @@ -15,13 +15,13 @@ let requestHandler = server.listen(PORT, () => console.log(`Listening on ${ PORT
const io = socketIO(requestHandler);

// Game Server
import MyServerEngine from './src/server/SpaaaceServerEngine.js';
import MyGameEngine from './src/common/SpaaaceGameEngine.js';
import SpaaaceServerEngine from './src/server/SpaaaceServerEngine.js';
import SpaaaceGameEngine from './src/common/SpaaaceGameEngine.js';


// Game Instances
const gameEngine = new MyGameEngine({ traceLevel: 1000 });
const serverEngine = new MyServerEngine(io, gameEngine, {
const gameEngine = new SpaaaceGameEngine({ traceLevel: 1000 });
const serverEngine = new SpaaaceServerEngine(io, gameEngine, {
debug: {},
updateRate: 6,
timeoutInterval: 0 // no timeout
Expand Down
87 changes: 64 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 28636fa

Please sign in to comment.