robocode
Class BulletMissedEvent

java.lang.Object
  |
  +--robocode.Event
        |
        +--robocode.BulletMissedEvent
All Implemented Interfaces:
Comparable

public class BulletMissedEvent
extends Event

This event is sent to onBulletMissed when one of your bullets has misses.


Constructor Summary
BulletMissedEvent(Bullet bullet)
          Called by the game to create a new BulletMissedEvent.
 
Method Summary
 Bullet getBullet()
          Returns the Bullet that missed.
 
Methods inherited from class robocode.Event
compareTo, getPriority, getTime, setPriority, setTime
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BulletMissedEvent

public BulletMissedEvent(Bullet bullet)
Called by the game to create a new BulletMissedEvent.

Method Detail

getBullet

public Bullet getBullet()
Returns the Bullet that missed.

Returns:
Bullet