14 lines
245 B
PHP
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;
|
|
} |