first commit
This commit is contained in:
35
CS1322/p6/MyWay2/CPacman.java
Normal file
35
CS1322/p6/MyWay2/CPacman.java
Normal file
@@ -0,0 +1,35 @@
|
||||
/**
|
||||
* <PRE>
|
||||
* CPacman.java
|
||||
*
|
||||
* Revisions: 1.0 Nov. 24, 2002
|
||||
* Created the CPacman class
|
||||
*
|
||||
* </PRE>
|
||||
*
|
||||
* @author <A HREF="mailto:gtg184g@mail.gatech.edu">Jose Manuel Caban</A>
|
||||
* @version Version 1.0, Nov. 24, 2002
|
||||
*/
|
||||
|
||||
public class CPacman extends CMonster implements Constants{
|
||||
private CCoord currLocation;
|
||||
|
||||
public CPacman(CCoord startLoc){
|
||||
this.iX = startLoc.getX();
|
||||
this.iY = startLoc.getY();
|
||||
this.iZ = startLoc.getZ();
|
||||
}
|
||||
|
||||
/**
|
||||
* Debugging main for class CPacman.
|
||||
* 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 CPacman
|
||||
Reference in New Issue
Block a user