From: Mark J S. <kr...@us...> - 2008-12-04 00:55:52
|
Update of /cvsroot/rails/18xx/rails/game/specific/_1835 In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv6167/18xx/rails/game/specific/_1835 Modified Files: StockRound_1835.java Log Message: Added Constructors for proper initializing Index: StockRound_1835.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/game/specific/_1835/StockRound_1835.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** StockRound_1835.java 30 Oct 2008 21:48:20 -0000 1.1 --- StockRound_1835.java 4 Dec 2008 00:55:48 -0000 1.2 *************** *** 6,9 **** --- 6,10 ---- import rails.game.CompanyManagerI; + import rails.game.GameManager; import rails.game.Portfolio; import rails.game.PublicCompanyI; *************** *** 18,21 **** --- 19,32 ---- CompanyManagerI compMgr; + /** + * 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_1835 (GameManager aGameManager) { + super (aGameManager); + } + /** * The company release rules for 1835. |