trueskill/src/ISupportPartialPlay.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

17 lines
432 B
PHP

<?php
declare(strict_types=1);
namespace DNW\Skills;
/**
* Indicates support for allowing partial play (where a player only plays a part of the time).
*/
interface ISupportPartialPlay
{
/**
* Indicates the percent of the time the player should be weighted where 0.0 indicates the player didn't play and 1.0 indicates the player played 100% of the time.
*/
public function getPartialPlayPercentage(): float;
}