mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-16 01:47:39 +00:00
10 lines
324 B
C#
10 lines
324 B
C#
|
namespace Moserware.Skills
|
|||
|
{
|
|||
|
public interface ISupportPartialUpdate
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Indicated how much of a skill update a player should receive where 0.0 represents no update and 1.0 represents 100% of the update.
|
|||
|
/// </summary>
|
|||
|
double PartialUpdatePercentage { get; }
|
|||
|
}
|
|||
|
}
|