projet-genie-logiciel-systeme/runtime-workspace/fr.n7.game.examples/src-gen/Objet.java

30 lines
676 B
Java
Raw Normal View History

2021-12-09 17:54:08 +00:00
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 + ")";
}
}