projet-genie-logiciel-systeme/runtime-workspace/fr.n7.game.examples/src-gen/Objet.java
2021-12-09 18:54:08 +01:00

30 lines
676 B
Java

import java.util.List;
public class Objet {
String nom;
int taille;
Condition visible;
List<Description> descriptions;
public Objet(
String nom,
int taille,
Condition visible,
List<Description> descriptions) {
this.nom = nom;
this.taille = taille;
this.visible = visible;
this.descriptions = descriptions;
}
@Override
public String toString() {
for (Description d : this.descriptions) {
if (d.condition.evaluer()) {
return "(" + this.nom + ": " + d + ")";
}
}
return "(" + this.nom + ")";
}
}