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

22 lines
615 B
Java

public class Jeu {
public static Explorateur explorateur;
Territoire territoire;
Objet objets[];
Connaissance connaissances[];
Personne personnes[];
Transformation transformations[];
public Jeu(
Territoire territoire,
Objet objets[],
Connaissance connaissances[],
Personne personnes[],
Transformation transformations[]) {
this.territoire = territoire;
this.objets = objets;
this.connaissances = connaissances;
this.personnes = personnes;
this.transformations = transformations;
}
}