mirror of
				https://github.com/furyfire/trueskill.git
				synced 2025-10-31 16:32:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			500 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			500 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| namespace Moserware\Skills\TrueSkill\Layers;
 | |
| 
 | |
| require_once(dirname(__FILE__) . "/../../FactorGraphs/FactorGraphLayer.php");
 | |
| require_once(dirname(__FILE__) . "/../TrueSkillFactorGraph.php");
 | |
| 
 | |
| use Moserware\Skills\FactorGraphs\FactorGraphLayer;
 | |
| use Moserware\Skills\TrueSkill\TrueSkillFactorGraph;
 | |
| 
 | |
| abstract class TrueSkillFactorGraphLayer extends FactorGraphLayer
 | |
| {
 | |
|     public function __construct(TrueSkillFactorGraph &$parentGraph)
 | |
|     {
 | |
|         parent::__construct($parentGraph);
 | |
|     }
 | |
| }
 | |
| 
 | |
| ?>
 | 
