My project broke while adding the namespaces in lesson 24 of the RPG Core course. I get the following console error:
Assets\Scripts\Control\PlayerController.cs(1,11): error CS0234: The type or namespace name 'Movement' does not exist in the namespace 'RPG' (are you missing an assembly reference?)
In PlayerComponent.cs:
using RPG.Movement;
And in Mover.cs:
namespace RPG.Movement
I’ve compared my code to Github, and it looks the same. Everything was fine before the namespace challenge.