コード例 #1
0
ファイル: index.php プロジェクト: ovaxio/easy-fight
<?php

ini_set('error_reporting', E_ALL);
function __autoload($class)
{
    require_once 'inc/' . $class . '.class.php';
}
$batman = new Player('Batman', 34, 42);
$ironman = new Player('Ironman', 43, 20);
$fight = new Fight($batman, $ironman);
$fight->start();
echo "\n<strong>" . $fight->getWinner()->getName() . ' win !</strong>';
コード例 #2
0
ファイル: Hero.php プロジェクト: Kvebalas/wow
 public function weapon()
 {
     $weapon = new Fight();
     $this->setClassName("Warrior");
     return $weapon->checkWeapon($this->getLevel(), $this->getClassName());
 }