Modification chemin
This commit is contained in:
17
php/Classe/Joueur.php
Normal file
17
php/Classe/Joueur.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
|
||||
class Joueur
|
||||
{
|
||||
private int $id;
|
||||
private bool $estVivant;
|
||||
private bool $estImposteur;
|
||||
|
||||
|
||||
public function __construct(int $id,bool $estVivant,bool $estImposteur)
|
||||
{
|
||||
$this->id=$id;
|
||||
$this->estVivant=$estVivant;
|
||||
$this->estImposteur=$estImposteur;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user