AdvancedRobot
Revision as of 02:27, 26 March 2016 by MultiplyByZer0 (talk | contribs) (Fixed grammar and added syntax highlighting)
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.