Enemy tanks, now firing.

This commit is contained in:
photonstorm
2013-10-09 07:11:36 +01:00
parent ca9321ef42
commit 29acf7fb4b
7 changed files with 182 additions and 43 deletions
-3
View File
@@ -171,9 +171,6 @@ Phaser.RandomDataGenerator.prototype = {
*/
realInRange: function (min, max) {
min = min || 0;
max = max || 0;
return this.frac() * (max - min) + min;
},