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

12 lines
218 B
Java
Raw Normal View History

2021-12-09 17:54:08 +00:00
public class ConditionBoolean implements ConditionTest {
Boolean bool;
public ConditionBoolean(Boolean bool) {
this.bool = bool;
}
public Boolean evaluer() {
return this.bool;
}
}