| Interface | Description |
|---|---|
| SimpleList<AnyType> |
An interface for simple lists that includes an Iterator.
|
| SimpleQueue<AnyType> |
An interface for queues that includes an Iterator.
|
| Class | Description |
|---|---|
| MyList<AnyType> |
A generic linked list class that you will write so that it implements
the SimpleList<AnyType> and SimpleQueue<AnyType> interfaces.
|
| Pellets |
Pellets, to be eaten by a Snake in the Snakes Game.
|
| Snake |
Snake, for use in the Snakes Game
|
| SnakesGame |
The user interface and main program for the Snakes game.
|