Ejemplo n.º 1
0
Archivo: Elf.php Proyecto: gregwar/php
 public function __construct($nickname)
 {
     parent::__construct($nickname);
     $this->attacks[] = new Hit();
     $this->attacks[] = new Arrow();
 }
Ejemplo n.º 2
0
 public function __construct($nickname)
 {
     parent::__construct($nickname);
     $this->attacks[] = new Tackle();
     $this->attacks[] = new Heal();
 }