From: Mark J S. <kr...@us...> - 2008-12-04 01:20:21
|
Update of /cvsroot/rails/18xx/rails/game/specific/_1856 In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv7243/18xx/rails/game/specific/_1856 Modified Files: StockRound_1856.java Log Message: Added Constructors for proper initializing Index: StockRound_1856.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/game/specific/_1856/StockRound_1856.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** StockRound_1856.java 2 Dec 2008 20:29:15 -0000 1.4 --- StockRound_1856.java 4 Dec 2008 01:20:13 -0000 1.5 *************** *** 4,7 **** --- 4,8 ---- import rails.game.CashHolder; import rails.game.Certificate; + import rails.game.GameManager; import rails.game.Portfolio; import rails.game.PublicCertificateI; *************** *** 9,16 **** --- 10,28 ---- import rails.game.ReportBuffer; import rails.game.StockRound; + import rails.game.move.CashMove; import rails.util.LocalText; public class StockRound_1856 extends StockRound { + /** + * 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_1856 (GameManager aGameManager) { + super (aGameManager); + } + /** * Special 1856 code to check for company flotation. |