Open Legends Core Library in PHP 8
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
587 B

<?php
declare(strict_types=1);
namespace OpenLegends\Core\Abstract\Card;
abstract class Rarity implements \OpenLegends\Core\Interface\Card\Rarity
{
private string $_name;
private string $_description;
public function setName(string $value): void
{
$this->_name = $value;
}
public function getName(): string
{
return $this->_name;
}
public function setDescription(string $value): void
{
$this->_description = $value;
}
public function getDescription(): string
{
return $this->_description;
}
}