So I just discovered Enums and they are fantastic. Makes my project so much easier to manage and understand. I was wondering though, what's best practice on how to use them?
1. Should each use case be independent and has its own c# script?
2. Should I put everything from my project into the same c# script?
Right now I went with option 2 and called it "ProjectEnums.cs". My idea is to put all my enums in it (not that I will have that much, but in the end it's probably 5-10.
Does that make sense or would it be better if I divided them into separate c# scripts?