Files
core/hwe/sammo/GameUnitConstraint/GameUnitConstraint.php
T

14 lines
245 B
PHP

<?php
namespace sammo\GameUnitConstraint;
use sammo\General;
use sammo\KVStorage;
abstract class GameUnitConstraint {
private function __construct()
{
}
public abstract function test(General $general, KVStorage $env): bool;
}