mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-15 17:37:39 +00:00
14 lines
303 B
PHP
14 lines
303 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DNW\Skills;
|
|
|
|
interface ISupportPartialUpdate
|
|
{
|
|
/**
|
|
* 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.
|
|
*/
|
|
public function getPartialUpdatePercentage(): float;
|
|
}
|