示例#1
0
 protected function getUnitsValueDescription(SingleDie $units)
 {
     if ($units->getValue() == null) {
         return '*';
     }
     return $this->getUnitsValue($units);
 }
示例#2
0
 public function addDieToPool(SingleDie $die)
 {
     $this->_diceArray[$die->getDieAbbrev()][] = $die;
 }