ithis my code
public class MenuObject ; MonoBehaviour ;
i keep geting a parsing error HELP how do i solve this
ithis my code
public class MenuObject ; MonoBehaviour ;
i keep geting a parsing error HELP how do i solve this
change the first semicolon to a colon and remove the second semicolon. like this:
public class MenuObject : MonoBehaviour {
}