feat(wip): GameUnitConstraint 개념 추가

This commit is contained in:
2025-01-21 14:25:56 +00:00
parent 91e56644b4
commit 3e5727a166
4 changed files with 51 additions and 20 deletions
@@ -0,0 +1,14 @@
<?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;
}