From: Mark J S. <kr...@us...> - 2008-12-04 00:55:31
|
Update of /cvsroot/rails/18xx/rails/game/specific/_18EU In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv6150/18xx/rails/game/specific/_18EU Modified Files: StockRound_18EU.java Log Message: Added Constructors for proper initializing Index: StockRound_18EU.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/game/specific/_18EU/StockRound_18EU.java,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** StockRound_18EU.java 2 Nov 2008 19:52:48 -0000 1.14 --- StockRound_18EU.java 4 Dec 2008 00:55:27 -0000 1.15 *************** *** 26,29 **** --- 26,47 ---- protected boolean phase5Reached = false; + /** + * Constructor with no parameters, will call super class (StockRound's) Constructor to initialize + * + */ + public StockRound_18EU () { + super (); + } + + /** + * Constructor with the GameManager, will call super class (StockRound's) Constructor to initialize + * + * @param aGameManager The GameManager Object needed to initialize the Stock Round + * + */ + public StockRound_18EU (GameManager aGameManager) { + super (aGameManager); + } + @Override public void start() { |