robocode
Class BulletHitBulletEvent
java.lang.Object
robocode.Event
robocode.BulletHitBulletEvent
- All Implemented Interfaces:
- Serializable, Comparable<Event>
public final class BulletHitBulletEvent
- extends Event
This event is sent to onBulletHitBullet
when one of your bullets has hit another bullet.
- Author:
- Mathew A. Nelson (original), Flemming N. Larsen (contributor)
- See Also:
- Serialized Form
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
BulletHitBulletEvent
public BulletHitBulletEvent(Bullet bullet,
Bullet hitBullet)
- Called by the game to create a new
BulletHitEvent
.
- Parameters:
bullet
- your bullet that hit another bullethitBullet
- the bullet that was hit by your bullet
getBullet
public Bullet getBullet()
- Returns your bullet that hit another bullet.
- Returns:
- your bullet
getHitBullet
public Bullet getHitBullet()
- Returns the bullet that was hit by your bullet.
- Returns:
- the bullet that was hit
Copyright © 2013 Robocode. All Rights Reserved.