implemented spawn points and a brand new map

This commit is contained in:
logsol 2014-02-03 16:18:22 +01:00
parent 4ea86a97aa
commit cc8aedd3ba
10 changed files with 1283 additions and 10645 deletions

View file

@ -75,5 +75,12 @@ define([
};
};
Level.prototype.getRandomSpawnPoint = function() {
return {
x: 150 + Math.random() * 300,
y: 0
};
};
return Level;
})