Question by
mattspykid · Jan 19, 2018 at 08:00 PM ·
scripting problem
The namespace '' already contains a definition for 'MoveWithArrows' ,The namespace '' already contains a definition for 'MoveWithArrows' (CS0101) (Assembly-CSharp)
i am working on a school project and this error is preventing me fro finishing can someone help me understand and fix it,I am working on a school project and this error is showing up can someone help me understand and fix it
Comment
Answer by MaxGuernseyIII · Jan 19, 2018 at 08:05 PM
Make sure you only have one definition of MoveWithArrows.
Find all the definitions
Pick one as the "real" one
Copy everything you need out of the other definitions
Past into the "real" one
Delete the extra definitions
You can also just make all the definitions partial but then, if you've duplicated any symbols within the duplicate scripts, you will just have moved the problem.