Created
April 27, 2016 15:16
-
-
Save RyanBreaker/612febddf5b213d136b5ea96f2a277b0 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
enum Command { | |
NEW_PERSON { | |
final char KEY = 'P'; | |
}, | |
ADD_FRIEND { | |
final char KEY = 'A'; | |
}, | |
UNFRIEND { | |
final char KEY = 'U'; | |
}, | |
LIST_FRIENDS { | |
final char KEY = 'L'; | |
}, | |
QUERY_FRIENDS { | |
final char KEY = 'Q'; | |
}, | |
EXIT { | |
final char KEY = 'X'; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment