This commit is contained in:
CCAZOT 2015-01-21 21:46:11 +01:00
parent 5bc2f9aa83
commit a795db4f6e
2 changed files with 16 additions and 2 deletions

View File

@ -1,5 +1,12 @@
package Person;
public class PersonnageBattleGoal {
import Observateur.Organisation;
public class PersonnageBattleGoal extends Personnage {
protected PersonnageBattleGoal(Organisation etatMajor, String nom) {
super(etatMajor, nom);
// TODO Auto-generated constructor stub
}
}

View File

@ -1,5 +1,12 @@
package Person;
public class PersonnageBattleSnow {
import Observateur.Organisation;
public class PersonnageBattleSnow extends Personnage{
protected PersonnageBattleSnow(Organisation etatMajor, String nom) {
super(etatMajor, nom);
// TODO Auto-generated constructor stub
}
}