Add PowerUpType enum

Handles weighted random seletion, color and instantiation, cleaning up
other sections of Brick and PlayState code.
This commit is contained in:
2018-11-13 18:42:27 +04:00
parent 0abae880d3
commit ea6240bd2c
10 changed files with 93 additions and 57 deletions

View File

@ -10,6 +10,8 @@ public class DesktopLauncher {
config.width = 450;
config.height = 800;
config.title = BrickBuster.TITLE;
//config.vSyncEnabled = false;
config.foregroundFPS = 0;
new LwjglApplication(new BrickBuster(), config);
}