====== MethodBot1 ====== ---- In robocode, create //MethodBot1//. //MethodBot1// should have the following void methods defined from previous robots: - moveDefault: Moves robot in the default (beginner) pattern - [[robocode_lab_-_circlebot1_zigbot1_randomturnbot1|moveCircle]]: Moves robot in a circle - [[list_of_cs-175_assignments#figureeightbot|moveFigure8]]: Moves robot in figure eight pattern - [[robocode_lab_-_circlebot1_zigbot1_randomturnbot1|moveZigzag]]: Moves robot in zigzag pattern (45° left and right) - [[robocode_lab_-_circlebot1_zigbot1_randomturnbot1|moveRandom]]: Moves robot in a random pattern (45° left and right) You should be able to call any of these methods from the robot main loop. See [[https://piazza.com/class_profile/get_resource/hzkswvpxv2r2nu/i0swk2l3lcp1l0|robot source code]]. ----