first commit
This commit is contained in:
28
CS1322/p6/MyWay2/Constants.java
Normal file
28
CS1322/p6/MyWay2/Constants.java
Normal file
@@ -0,0 +1,28 @@
|
||||
/**
|
||||
* <PRE>
|
||||
* Constants.java
|
||||
*
|
||||
* Revisions: 1.0 Nov. 13, 2002
|
||||
* Created the Constants class
|
||||
*
|
||||
* </PRE>
|
||||
*
|
||||
* @author <A HREF="mailto:gtg184g@mail.gatech.edu">Jose Manuel Caban</A>
|
||||
* @version Version 1.0, Nov. 13, 2002
|
||||
*/
|
||||
|
||||
public interface Constants {
|
||||
|
||||
/*Directions*/
|
||||
/**
|
||||
*Define 4 movement constants: MV_UP, MV_DN, MV_LFT, MV_RGHT
|
||||
*/
|
||||
public static final int MV_UP = 0;
|
||||
public static final int MV_DN = 1;
|
||||
public static final int MV_LEFT = 2;
|
||||
public static final int MV_RIGHT = 3;
|
||||
public static final int MV_SAMEDIR= 4;
|
||||
|
||||
|
||||
|
||||
}// end of class Constants
|
||||
Reference in New Issue
Block a user