Example #1
0
File: Elf.php Project: gregwar/php
 public function __construct($nickname)
 {
     parent::__construct($nickname);
     $this->attacks[] = new Hit();
     $this->attacks[] = new Arrow();
 }
Example #2
0
 public function __construct($nickname)
 {
     parent::__construct($nickname);
     $this->attacks[] = new Tackle();
     $this->attacks[] = new Heal();
 }