103104105106107108109110111112
// initialize the drop board array _dboards = new DropBoard[_puzmgr.getPlayerCount()]; // create the piece dropper if appropriate PieceDropLogic pdl = getPieceDropLogic(); if (pdl != null) { _dropper = getPieceDropper(pdl); } }
130131132133134135136137138139
DropConfig dconfig = (DropConfig)config; _bwid = dconfig.getBoardWidth(); _bhei = dconfig.getBoardHeight(); // create the piece dropper if appropriate PieceDropLogic pdl = getPieceDropLogic(); if (pdl != null) { _dropper = getPieceDropper(pdl); } }