mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-16 09:57:40 +00:00
16 lines
313 B
PHP
16 lines
313 B
PHP
<?php namespace Moserware\Skills;
|
|
|
|
use Moserware\Skills\Numerics\Range;
|
|
|
|
class PlayersRange extends Range
|
|
{
|
|
public function __construct($min, $max)
|
|
{
|
|
parent::__construct($min, $max);
|
|
}
|
|
|
|
protected static function create($min, $max)
|
|
{
|
|
return new PlayersRange($min, $max);
|
|
}
|
|
} |