AdvancedRobot

From Robowiki
Revision as of 03:27, 26 March 2016 by MultiplyByZer0 (talk | contribs) (Fixed grammar and added syntax highlighting)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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.