[Solved] Processing – “unexpected token: void” [closed]
You do have a syntax error. The Class keyword should be class with a lower-case c. You should also not have parenthesis after the class name. Also, see my answer here. The Processing editor doesn’t like when you only have a class definition without Processing functions like setup() and draw(). Side note: you might want … Read more