mirror of
				https://github.com/furyfire/trueskill.git
				synced 2025-11-04 10:12:28 +01: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);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
?>
 |