From 203e3311b7f093a5ad2bc39e4f270123816e2e0d Mon Sep 17 00:00:00 2001 From: Matt Low Date: Sun, 11 Nov 2018 11:57:21 +0400 Subject: [PATCH] Shrunk ball again --- core/src/com/me/brickbuster/entity/Ball.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/com/me/brickbuster/entity/Ball.java b/core/src/com/me/brickbuster/entity/Ball.java index ba77c94..1797895 100644 --- a/core/src/com/me/brickbuster/entity/Ball.java +++ b/core/src/com/me/brickbuster/entity/Ball.java @@ -7,7 +7,7 @@ import com.me.brickbuster.BrickBuster; public class Ball extends Entity { - public static final int RADIUS = 20; + public static final int RADIUS = 18; public static final Color BALL_COLOR = Color.CHARTREUSE; public Vector2 direction;