I'm trying to create a new class something that requires 3 parameters i.e.
Public centerX As Integer = 400
Public centerY As Integer = 400
Public radius As Float = 400
Public corrector As New OPC(centerX, centerY, radius)
in a separate class file in the project I've defined the class as follows...
Public OPC(centerX As Integer, centerY As Integer, radius As Float) As Class
but get the error...
Missing AS (OPC.class:3)
What am I doing wrong?