Create an Eclipse project
Add AllCritterCode.java so a simulation can be run with 50 Rovers, no changes needed
With your name at the top as a comment, implement Critter with your a Java class using a name of your own choosing
Use your own algorithm for getMove that is unique from the five on this specification.
Write a comment about what your critter is trying to do
It can be very simple, don't stress over winning (unless you want to)
Let getChar return the first letter of your last name
Change the main method in AllCritterCode to add 50 of your own critters in addition to 50 Rovers
Run the simulation to see how your Critter does (and that your Critter compiles).
Turn in the one java file to D2L that has your new Critter, the one that implements interface Critter
Grading Criteria 12pts
-8 If you copied an existing getMove algorithm
____/ 2 You have a comment with your name at the top of the file
____/ 2 Comments describe the behaviour of your Critter
____/ 8 Your critter can be run in a Critter Tournament and the getMove algorithm is unique