示例#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();
 }