Update of /cvsroot/rails/18xx/rails/game/action
In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv11087/rails/game/action
Modified Files:
NullAction.java
Log Message:
Added START_GAME (to replace null action after loading)
Index: NullAction.java
===================================================================
RCS file: /cvsroot/rails/18xx/rails/game/action/NullAction.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** NullAction.java 18 Jan 2010 18:49:12 -0000 1.8
--- NullAction.java 20 Jan 2010 19:50:47 -0000 1.9
***************
*** 8,14 ****
public static final int SKIP = 2;
public static final int AUTOPASS = 3;
! public static final int MAX_MODE = 3;
- private static String[] name = new String[] { "Done", "Pass", "Skip", "Autopass" };
protected int mode = -1;
--- 8,16 ----
public static final int SKIP = 2;
public static final int AUTOPASS = 3;
! public static final int START_GAME = 4; // For use after loading
! public static final int MAX_MODE = 4;
!
! private static String[] name = new String[] { "Done", "Pass", "Skip", "Autopass", "StartGame" };
protected int mode = -1;
|