Skip to content

Instantly share code, notes, and snippets.

@bragboy
Created November 12, 2015 11:16
Show Gist options
  • Select an option

  • Save bragboy/247d9b3a45251de3fc23 to your computer and use it in GitHub Desktop.

Select an option

Save bragboy/247d9b3a45251de3fc23 to your computer and use it in GitHub Desktop.
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