コード例 #1
0
ファイル: Armor.php プロジェクト: TorbenKoehn/gw2-php
 public function __construct($type, $weightClass)
 {
     parent::__construct($type);
     $this->_weightClass = $weightClass;
 }
コード例 #2
0
ファイル: Weapon.php プロジェクト: TorbenKoehn/gw2-php
 public function __construct($type, $damageType)
 {
     parent::__construct($type);
     $this->_damageType = $damageType;
 }