Does anyone know what’s wrong with my code?
Hey @Benji_Tang,
Remove the ‘static’ word from the line:
private static void PrintAllWaypoints()
So, it should just be:
private void PrintAllWaypoints()
Hope that helps!
Hey @Benji_Tang,
Remove the ‘static’ word from the line:
private static void PrintAllWaypoints()
So, it should just be:
private void PrintAllWaypoints()
Hope that helps!