-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdirectionState.java
More file actions
executable file
·14 lines (13 loc) · 1 KB
/
directionState.java
File metadata and controls
executable file
·14 lines (13 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/************************************************************************************
* Wayne Alexander Mack Jr. *
* email: wamj283@gmail.com *
* phone: (443) 627 - 1117 *
* -------------------------------------------------------------------------------- *
* CMSC 335 - Project 3 *
* Written in : JAVA *
* (c) 2020 Wayne Alexander Mack Jr. *
* -------------------------------------------------------------------------------- *
* directionState.java - enumerations used for directions of cars *
************************************************************************************/
package Project3;
enum directionState {NORTH,SOUTH,EAST,WEST}