projet-genie-logiciel-systeme/enigme.java/Lieu.java
Laureηt 2b4b5433b7
feat: ajout du java
Co-authored-by: gdamms <gdamms@users.noreply.github.com>
2021-11-30 23:02:55 +01:00

30 lines
754 B
Java

public class Lieu {
String nom;
Boolean deposable;
Boolean depart;
Boolean fin;
Personne[] personnes;
Description[] descriptions;
Objet[] objets;
Connaissance[] connaissances;
public Lieu(
String nom,
Boolean deposable,
Boolean depart,
Boolean fin,
Personne[] personnes,
Description[] descriptions,
Objet[] objets,
Connaissance[] connaissances) {
this.nom = nom;
this.deposable = deposable;
this.depart = depart;
this.fin = fin;
this.personnes = personnes;
this.descriptions = descriptions;
this.objets = objets;
this.connaissances = connaissances;
}
}