source:
galactic-heroes/GameState.java@
7d9c033
Last change on this file since 7d9c033 was 7d9c033, checked in by , 6 years ago | |
---|---|
|
|
File size: 269 bytes |
Rev | Line | |
---|---|---|
[7d9c033] | 1 | public enum GameState { |
2 | MAIN("MAIN", 0), | |
3 | GAME("GAME", 1), | |
4 | LOAD("LOAD", 2), | |
5 | INSTRUCT("INSTRUCT", 3), | |
6 | FAME("FAME", 4), | |
7 | CREDITS("CREDITS", 5), | |
8 | WIN("WIN", 6), | |
9 | LOSE("LOSE", 7); | |
10 | ||
11 | private GameState(final String s, final int n) { | |
12 | } | |
13 | } |
Note:
See TracBrowser
for help on using the repository browser.