trueskill/src/ISupportPartialUpdate.php
Jens True c18ccd38e2
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Bunch of generic code standard items. Will need a cleanup.
2024-02-02 15:16:11 +00:00

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;
}