Made asteroids brown
Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user