projet-genie-logiciel-systeme/enigme.java/Lieu.java

30 lines
754 B
Java
Raw Normal View History

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;
}
}