Render pellets on menu screen.

Add Level object which contains level data (in the form of
an 2D array of stateless LevelComponents), LevelLoader which loads
level data from a txt file.
This commit is contained in:
2019-12-24 02:27:05 +04:00
parent e031cb4400
commit eae226b5bb
7 changed files with 120 additions and 6 deletions

View File

@ -10,7 +10,7 @@ public class DesktopLauncher {
config.title = PacDude.TITLE + " - " + PacDude.VERSION;
config.width = (224 * 2);
config.height = (248 * 2);
config.resizable = true;
config.resizable = false;
new LwjglApplication(new PacDude(), config);
}
}