mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-16 01:47:39 +00:00
21 lines
372 B
PHP
21 lines
372 B
PHP
|
<?php
|
||
|
namespace Moserware\Skills;
|
||
|
|
||
|
require_once(dirname(__FILE__) . "/Numerics/Range.php");
|
||
|
|
||
|
use Moserware\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);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|