コード例 #1
0
ファイル: Ship.php プロジェクト: ammark/DemoGame-PHP
 public function __construct($name)
 {
     parent::__construct($name);
     // randomly put this ship under repair
     $this->underRepair = mt_rand(1, 100) < 30;
 }
コード例 #2
0
ファイル: Ship.php プロジェクト: sjhuda/knp-oop
 public function __construct($name)
 {
     parent::__construct($name);
     $this->underRepair = mt_rand(1, 100) < 30;
 }