You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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; |