Now finish the SnakeDirection enum so that it contains the possible directions of the snake's movement.
Add 4 values: UP, DOWN, LEFT, RIGHT.
It should look something like this:
public enum SnakeDirection
{
UP,
RIGHT,
DOWN,
LEFT
}
Snake (part 5)
- 6
Locked
Comments
- Popular
- New
- Old
You must be signed in to leave a comment
This page doesn't have any comments yet