29 lines
634 B
Java
29 lines
634 B
Java
/**
|
|
* <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
|