openlegends
9 months ago
2 changed files with 25 additions and 2 deletions
@ -0,0 +1,17 @@ |
|||||||
|
<?php |
||||||
|
|
||||||
|
declare(strict_types=1); |
||||||
|
|
||||||
|
namespace OpenLegends\Asset\Test\Ability; |
||||||
|
|
||||||
|
class Multiple extends \OpenLegends\Engine\Abstract\Ability |
||||||
|
{ |
||||||
|
private array $_abilities = []; |
||||||
|
|
||||||
|
public function add( |
||||||
|
\OpenLegends\Engine\Abstract\Ability $ability |
||||||
|
): void |
||||||
|
{ |
||||||
|
$this->_abilities[] = $ability; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue