AdvancedRobot
From RoboWiki
Revision as of 01:27, 26 March 2016 by MultiplyByZer0 (Talk | contribs)
This page is dedicated for describing the robocode.AdvancedRobot
In order to convert a Robot into an AdvancedRobot, replace:
public class NameOfRobot extends Robot { //...
with:
public class NameOfRobot extends AdvancedRobot { //...
This will allow you to access setXXX() methods, as well as other parts of Robocode.
Learn more at the AdvancedRobot documentation.