<?php //test class Character { protected $hp = 100; protected $dmg = 10; protected $armor = 10; } class Dragon extends Character { public function __contruct() { } } $Character = new Dragon(); ?>
<?php //test class Character { protected $hp = 100; protected $dmg = 10; protected $armor = 10; } class Dragon extends Character { public function __contruct() { } } $Character = new Dragon(); ?>