first commit

This commit is contained in:
Jose Caban
2025-06-07 01:59:34 -04:00
commit 388ac241f0
3558 changed files with 9116289 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
/**
* <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_LFT = 2;
public static final int MV_RGHT = 3;
}// end of class Constants