I want to show a score with a special font how can I :
- write an int
- write with my own font
There is a function drawString() , is there a way to change an int into a string?
int someInt = 7; String str = "" + someInt; // str now equals "7"