const uuid = require('node-uuid'); const Game = function() { this.id = uuid.v4(); this.walls = [ {x: 8, y: 9, n: 1, e: 0, s: 0, w: 1 }, {x: 18, y: 9, n: 1, e: 0, s: 0, w: 1 }, {x: 4, y: 19, n: 1, e: 0, s: 0, w: 1 } ]; } module.exports = Game;