class Menu{ PFont m; Menu(){ m = createFont("Arial",16,true); textFont(m,30); fill(0); } void showMenu(){ text("Welcome to WaterGame!\nTry to catch the ball with pressing 'a' or 'd'\nWith 'n' you can start playing", 0, height - 100); } }