UnitConstBase 적용용

This commit is contained in:
2025-01-21 16:02:24 +00:00
parent 01094d376f
commit 7cffa68d04
6 changed files with 69 additions and 61 deletions
@@ -0,0 +1,18 @@
<?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 "불가능";
}
}