trueskill/src/ISupportPartialUpdate.php

12 lines
277 B
PHP
Raw Normal View History

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