mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-16 09:57:40 +00:00
15 lines
275 B
C#
15 lines
275 B
C#
|
|
|||
|
namespace Moserware.Skills.Elo
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// An Elo rating represented by a single number (mean).
|
|||
|
/// </summary>
|
|||
|
public class EloRating : Rating
|
|||
|
{
|
|||
|
public EloRating(double rating)
|
|||
|
: base(rating, 0)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|