String cheat = ""; void drawSplashScreen() { background(#000000); fill(#FFFFFF); textAlign(CENTER, CENTER); textFont(headingFont); text("Sokoban", width / 2, height / 4); textFont(textFont); text("A single player game.\n\nPress any key start the game with the first level.\n\n© 2022 Christian Weber", width / 2, height / 2); } void keyPressedSplashScreen() { if (key == 'w' || key == 'i' || key == 'n' || key == 't' || key == 'e' || key == 'r') { cheat += key; if (cheat.equals("winter")) { unlockedLevel = 9999; gameState = GAME_LEVEL_SELECT; } } else { startGame(0); } }