This commit is contained in:
CCAZOT committed 2015-01-21 21:46:11 +01:00
1 parent 5bc2f9aa83
commit a795db4f6e
2 files changed
+16 -2

No files matched your search

+8 -1
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
}
}
+8 -1
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
}
}