And I want to generate a random direction.
I can generate a random number from 0-4 but, as I understand, an enum can be assigned to an int but an int cannot be assigned to an enum?
Is there some better way to do this other than a switch statement to check case 0 direction=up...and so on?