-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTrafficFlowState.java
More file actions
executable file
·14 lines (14 loc) · 1.07 KB
/
TrafficFlowState.java
File metadata and controls
executable file
·14 lines (14 loc) · 1.07 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. *
* -------------------------------------------------------------------------------- *
* TrafficFlowState.java - Enumerations for controlling traffic flow *
************************************************************************************/
package Project3;
enum TrafficFlowState { GreenEastWest, YellowEastWest,
GreenNorthSouth, YellowNorthSouth, AllDirectionsRed}