Created
November 12, 2015 11:16
-
-
Save bragboy/247d9b3a45251de3fc23 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package nasa.main; | |
| public class Constants { | |
| public static final byte DIRECTION_NORTH = 'N'; | |
| public static final byte DIRECTION_EAST = 'E'; | |
| public static final byte DIRECTION_SOUTH = 'S'; | |
| public static final byte DIRECTION_WEST = 'W'; | |
| public static final byte ROTATE_LEFT = 'L'; | |
| public static final byte ROTATE_RIGHT = 'R'; | |
| public static final byte MOVE = 'M'; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment