コード例 #1
0
 protected function getUnitsValueDescription(SingleDie $units)
 {
     if ($units->getValue() == null) {
         return '*';
     }
     return $this->getUnitsValue($units);
 }
コード例 #2
0
ファイル: EoEDice.php プロジェクト: KennyBu/RegRoll
 public function addDieToPool(SingleDie $die)
 {
     $this->_diceArray[$die->getDieAbbrev()][] = $die;
 }