update user type namespace

This commit is contained in:
openlegends 2024-03-19 17:34:19 +02:00
parent fded9fedef
commit 99c9290bbb

View File

@ -2,9 +2,9 @@
declare(strict_types=1); declare(strict_types=1);
namespace OpenLegends\Asset\Test\Player; namespace OpenLegends\Asset\Test\User\Type;
class Elf extends \OpenLegends\Engine\Abstract\Player class Elf extends \OpenLegends\Engine\Abstract\User\Type
{ {
public function __construct() public function __construct()
{ {
@ -15,13 +15,5 @@ class Elf extends \OpenLegends\Engine\Abstract\Player
$this->setDescription( $this->setDescription(
_('Just Elf') _('Just Elf')
); );
$this->setHealth(
30
);
$this->setRunes(
5
);
} }
} }