I created a Title class with the constructor Title(String, int, int), but when I try to construct a Title I get the error "The function Title(String, int, int) does not exist." I have checked and re-checked my curly brackets to make sure I don't have any dangling open brackets that might cause an error like this, and I can't find any. Not even a missing semicolon (for once in my life). Can anyone think of something else that might cause an error like this? Here's my code for the Title class:
class Title{ String title; int currentX, currentY, endX, endY, changeX, changeY; boolean titleDraw; int titleSize = 100; int sizeChange = 4; PFont thinFont;