Files
core/hwe/sammo/GameUnitConstraint/Impossible.php
T
2025-01-21 16:02:24 +00:00

18 lines
363 B
PHP

<?php
namespace sammo\GameUnitConstraint;
use sammo\General;
class Impossible extends BaseGameUnitConstraint {
public function test(General $general, array $ownCities, array $ownRegions, int $relativeYear, int $tech, array $nationAux): bool
{
return false;
}
public function getInfo(): string
{
return "불가능";
}
}