Breakout Problem Set Javadocs

breakout
Interface Wall

All Superinterfaces:
BreakoutComponent
All Known Implementing Classes:
BasicWall

public interface Wall
extends BreakoutComponent

Defines the contract for objects that act as Walls in the game.


Method Summary
 boolean killing()
          Tells if this wall kills things that hit it.
 
Methods inherited from interface breakout.BreakoutComponent
getLocation, getShape, getSize, hit, paint, setLocation, update
 

Method Detail

killing

public boolean killing()
Tells if this wall kills things that hit it.

Returns:
true if the things that hit it should die; false if things that hit it are otherwise unaffected.

Breakout Problem Set Javadocs