Ok so novice VS C++ user so any feedback appreciated.
I’m encountering a repeating issue whereby after making some minor edit on a project that compiled fine, I suddeny get dozens and dozens of non sensical errors after a build (Ctrl+Shift+B)
ie 'foo': is not a member of 'Afoo'
syntax error: missing ';' before '*'
on the following line
UBoxComponent* Collider;
unexpected token(s) preceding ';'
on the following line
ABall* BallRef;
It’s a very simple Pong tutorial I am following.
There must be something major and obvious that is set up wrong in my project.
Any tips or feedback appreciated!