コード例 #1
0
ファイル: Elf.php プロジェクト: gregwar/php
 public function __construct($nickname)
 {
     parent::__construct($nickname);
     $this->attacks[] = new Hit();
     $this->attacks[] = new Arrow();
 }
コード例 #2
0
ファイル: Wizard.php プロジェクト: gregwar/php
 public function __construct($nickname)
 {
     parent::__construct($nickname);
     $this->attacks[] = new Tackle();
     $this->attacks[] = new Heal();
 }