Création des cartes lumières pour insertion dans la bdd

This commit is contained in:
Paul Gross
2020-05-05 15:28:51 +02:00
parent 8952512b3e
commit f8be85ad5e
24 changed files with 316 additions and 67 deletions

View File

@ -13,12 +13,19 @@ public abstract class CarteCondition extends CarteEffet implements Serializable{
*/
private static final long serialVersionUID = 903022795821166067L;
public CarteCondition() {
super("","");
this.condition = new Condition();
}
public CarteCondition(String nom, String description) {
super(nom, description);
}
private Condition condition;