Update of /cvsroot/rails/18xx/rails/game
In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv9020/rails/game
Modified Files:
GameDef.java
Log Message:
Added OrStep enum
Index: GameDef.java
===================================================================
RCS file: /cvsroot/rails/18xx/rails/game/GameDef.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** GameDef.java 31 Jan 2010 22:22:28 -0000 1.3
--- GameDef.java 6 Feb 2010 23:45:21 -0000 1.4
***************
*** 30,32 ****
--- 30,53 ----
}
+ /**
+ * OR step values
+ * @author Erik
+ */
+ public enum OrStep {
+
+ INITIAL,
+ LAY_TRACK,
+ LAY_TOKEN,
+ CALC_REVENUE,
+ PAYOUT,
+ BUY_TRAIN,
+ TRADE_SHARES,
+ REPAY_LOANS,
+ FINAL,
+
+ /* Out-of-sequence steps*/
+ DISCARD_TRAINS;
+
+ }
+
}
|