Removed hard-coded values, shrunk ball

This commit is contained in:
2018-11-11 11:55:50 +04:00
parent ace35e1a2c
commit 4c3add8378
3 changed files with 9 additions and 4 deletions

View File

@ -74,4 +74,8 @@ public class BrickBuster extends ApplicationAdapter {
public Paddle getPaddle() {
return paddle;
}
public ArrayList<Block> getBlocks() {
return blocks;
}
}