Files
trueskill/src/TeamsRange.php

16 lines
297 B
PHP
Raw Normal View History

2022-07-05 15:33:34 +02:00
<?php namespace DNW\Skills;
2022-07-05 15:33:34 +02:00
use DNW\Skills\Numerics\Range;
class TeamsRange extends Range
{
public function __construct($min, $max)
{
parent::__construct($min, $max);
}
2022-07-05 15:33:34 +02:00
protected static function create($min, $max)
{
return new TeamsRange($min, $max);
}
}