mirror of
				https://github.com/furyfire/trueskill.git
				synced 2025-11-04 10:12:28 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			277 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			277 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace Moserware\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();
 | 
						|
}
 | 
						|
?>
 |