/** *
 *  WallPiece.java
 *
 *  Revisions: 1.0 Nov. 11, 2002
 *               Created the WallPiece class
 *			   1.1 Nov. 11, 2002
 *				 Compiled, Commented, Finished
 *
 *  
* * Collaboration Statement: * I worked on the homework assignment alone, using only * course materials. * * Created with JCreatorLE, some indents are off when viewed through notepad * or EMACS * * @author Jose Manuel Caban * @version Version 1.1, Nov. 11, 2002 */ public class WallPiece extends GamePiece{ public WallPiece(int x, int y){ super(x,y); } public String toString(){ return (super.toString() + "Wall Piece]"); } /***************************************************/ /** * Debugging main for class WallPiece. * This method will rigorously test my code. * *

* @param args a String array of command line arguments. */ public static void main(String[] args) { }// end of main(String[] args) }// end of class WallPiece