source: advance-wars/src/com/medievaltech/advancewars/Enum.java@ 511177b

Last change on this file since 511177b was 99433bb, checked in by dportnoy <devnull@…>, 13 years ago

Added Enum.java (forgot to do this before)

  • Property mode set to 100644
File size: 363 bytes
RevLine 
[99433bb]1package com.medievaltech.advancewars;
2
3public class Enum {
4 public enum GameState {
5 MAIN_MENU,
6 BATTLE_MAP
7 }
8
9 public enum Turn {
10 YOUR_TURN,
11 ENEMY_TURN
12 }
13
14 public enum TerrainType {
15 LAND,
16 SEA
17 }
18
19 public enum MenuOption {
20 END_TURN,
21 SAVE,
22 MAIN,
23 EXIT
24 }
25
26 public enum UnitType {
27 LAND,
28 SEA,
29 AIR
30 }
31}
Note: See TracBrowser for help on using the repository browser.