Uses of ICar in |
---|
Classes in that implement ICar | |
class |
RallyCar
This is the class that you must implement to enable your car within the CodeRally track. |
Methods in with parameters of type ICar | |
void |
RallyCar.move(int lastMoveTime,
boolean hitWall,
ICar collidedWithCar,
ICar hitBySpareTire)
|
Uses of ICar in com.ibm.rally |
---|
Classes in com.ibm.rally that implement ICar | |
class |
Car
This class is the superclass of the RallyCar that you implement. |
Methods in com.ibm.rally that return ICar | |
ICar[] |
Car.getOpponents()
Returns an array of all the cars that you are currently competing against in this match. |
Methods in com.ibm.rally with parameters of type ICar | |
abstract void |
Car.move(int lastMoveTime,
boolean hitWall,
ICar collidedWithCar,
ICar hitBySpareTire)
This method is called repeatedly to allow you to move your car. |