2020-12-04 01:31:37 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
class Joueur
|
|
|
|
{
|
|
|
|
private int $id;
|
|
|
|
private bool $estVivant;
|
|
|
|
private bool $estImposteur;
|
2020-12-04 02:52:32 +01:00
|
|
|
|
|
|
|
|
|
|
|
public function __construct(int $id,bool $estVivant,bool $estImposteur)
|
|
|
|
{
|
|
|
|
$this->id=$id;
|
|
|
|
$this->estVivant=$estVivant;
|
|
|
|
$this->estImposteur=$estImposteur;
|
|
|
|
}
|
2020-12-04 01:31:37 +01:00
|
|
|
}
|