Hey,
1
how do I chose the font style of my text when I use:GreenfootImage bg = getBackground();
Color c1 = new Color(x, y, z);
bg.setColor(c1);
Font f1 = new Font(what do I have to place here to chose the font?);
bg.setFont(f1);
bg.drawString("hello world", x, y);

