mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-16 01:47:39 +00:00
19 lines
326 B
PHP
19 lines
326 B
PHP
<?php
|
|
namespace Moserware\Skills\Elo;
|
|
|
|
require_once(dirname(__FILE__) . '/../Rating.php');
|
|
|
|
use Moserware\Skills\Rating;
|
|
|
|
/**
|
|
* An Elo rating represented by a single number (mean).
|
|
*/
|
|
class EloRating extends Rating
|
|
{
|
|
public function __construct($rating)
|
|
{
|
|
parent::__construct($rating, 0);
|
|
}
|
|
}
|
|
|
|
?>
|