trueskill/src/ISupportPartialPlay.php

17 lines
432 B
PHP
Raw Normal View History

2022-07-05 13:55:47 +00:00
<?php
declare(strict_types=1);
2022-07-05 13:55:47 +00:00
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.
*/
2023-08-02 10:59:15 +00:00
public function getPartialPlayPercentage(): float;
2022-07-05 13:55:47 +00:00
}