mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-16 09:57:40 +00:00
14 lines
249 B
PHP
14 lines
249 B
PHP
<?php
|
|
|
|
namespace Moserware\Skills\TrueSkill\Layers;
|
|
|
|
abstract class TrueSkillFactorGraphLayer extends FactorGraphLayer
|
|
{
|
|
public function __construct(TrueSkillFactorGraph $parentGraph)
|
|
{
|
|
parent::__construct($parentGraph);
|
|
}
|
|
}
|
|
|
|
?>
|