You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
444 B
19 lines
444 B
package model;
|
|
|
|
public class CaseEvenement extends Case{
|
|
char evenement;
|
|
|
|
public CaseEvenement(int idCase, int coordX, int coordY, boolean isStart, boolean isEnd, char evenement) {
|
|
super(idCase, coordX, coordY, isStart, isEnd);
|
|
this.evenement = evenement;
|
|
}
|
|
|
|
public char getEvenement() {
|
|
return evenement;
|
|
}
|
|
|
|
public void setEvenement(char evenement) {
|
|
this.evenement = evenement;
|
|
}
|
|
}
|