mirror of
https://github.com/openlegends/asset-php.git
synced 2025-08-26 05:42:06 +00:00
12 lines
215 B
PHP
12 lines
215 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OpenLegends\Asset\Test\Card;
|
|
|
|
class Goblin extends \OpenLegends\Engine\Abstract\Card
|
|
{
|
|
public function act(
|
|
\OpenLegends\Engine\Abstract\Card $target
|
|
) {}
|
|
} |