Simplifying

This commit is contained in:
2024-05-21 12:24:59 +00:00
parent de6a414d2b
commit da5d782e40
7 changed files with 12 additions and 25 deletions

View File

@ -11,6 +11,12 @@ use Exception;
*/
abstract class SkillCalculator
{
public const NONE = 0x00;
public const PARTIAL_PLAY = 0x01;
public const PARTIAL_UPDATE = 0x02;
protected function __construct(
private readonly int $supportedOptions,
private readonly TeamsRange $totalTeamsAllowed,