You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
413 B
21 lines
413 B
<?php
|
|
|
|
namespace model;
|
|
|
|
class ConfigurationJeu{
|
|
private Difficulte $difficulte;
|
|
private Jeu $jeu;
|
|
|
|
public function __construct(Jeu $jeu, Difficulte $difficulte){
|
|
$this->jeu = $jeu;
|
|
$this->difficulte = $difficulte;
|
|
}
|
|
|
|
public function getDifficulte(): Difficulte{
|
|
return $this->difficulte;
|
|
}
|
|
|
|
public function getJeu(): Jeu{
|
|
return $this->jeu;
|
|
}
|
|
} |