47 lines
1.1 KiB
Java
47 lines
1.1 KiB
Java
/**
|
|
* <PRE>
|
|
* WallPiece.java
|
|
*
|
|
* Revisions: 1.0 Nov. 11, 2002
|
|
* Created the WallPiece class
|
|
* 1.1 Nov. 11, 2002
|
|
* Compiled, Commented, Finished
|
|
*
|
|
* </PRE>
|
|
*
|
|
* 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 <A HREF="mailto:gtg184g@mail.gatech.edu">Jose Manuel Caban</A>
|
|
* @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.
|
|
*
|
|
* <br><br>
|
|
* @param args a String array of command line arguments.
|
|
*/
|
|
public static void main(String[] args) {
|
|
|
|
|
|
}// end of main(String[] args)
|
|
|
|
}// end of class WallPiece
|