Made asteroids brown

Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
This commit is contained in:
2012-04-04 00:03:48 -04:00
parent 563676f772
commit 7ee23b0251

View File

@@ -48,7 +48,7 @@ public class Asteroid extends MovingSpaceObject implements Collider, Drawable {
*/ */
public Asteroid(double x, double y, double minVelocity, double maxVelocity, int radius, int numberSplit, int hitsLeft, AsteroidGame game) { public Asteroid(double x, double y, double minVelocity, double maxVelocity, int radius, int numberSplit, int hitsLeft, AsteroidGame game) {
mGame = game; mGame = game;
mColor = Color.GRAY; mColor = new Color(66,33,0);
mX = x; mX = x;
mY = y; mY = y;
mMinVelocity = minVelocity; mMinVelocity = minVelocity;