projet-genie-logiciel-systeme/runtime-workspace/fr.n7.game.examples/src-gen/Description.java
2022-01-18 23:29:53 +01:00

23 lines
396 B
Java

import java.util.List;
public class Description {
String texte;
Condition condition;
String nom;
public Description(
String nom,
String texte,
Condition condition) {
this.nom = nom;
this.texte = texte;
this.condition = condition;
}
@Override
public String toString() {
return this.texte;
}
}