BUT2/DEV/DEV_Madelaine/stub/exo3/Travailleur.java

32 lines
481 B
Java
Raw Normal View History

2023-11-29 16:08:44 +01:00
/** feuille du motif composite */
public class Travailleur extends Person {
/** constructeur
*
* @param n fun factor
*
*/
public Travailleur(int n){
super(n);
}
/**
*
* @return fête sans le travailleur
*/
public int bestPartyWithoutMe(){
return 0;
}
/**
* @return fête avec le travailleur
*/
public int bestParty(){
return this.getFunFactor();
}
}