001    package breakout;
002    
003    /**
004     * interface Brick provides a way to indicate whether a component
005     * is brick-like
006     *
007     * @see breakout.BenSimpleBrick
008     * @see breakout.BreakoutComponent
009     *
010     * @author benmv@olin.edu
011     * @version <tt>$Id: Brick.java,v 1.2 2004/03/26 20:39:33 gus Exp $</tt>
012     */
013    public interface Brick extends BreakoutComponent {
014    
015    }
016