Merge branch 'development' of https://github.com/PTE-SH/ShadowHunterGame into development
This commit is contained in:
23
src/carte/CarteEquipementEffet.java
Normal file
23
src/carte/CarteEquipementEffet.java
Normal file
@ -0,0 +1,23 @@
|
||||
package carte;
|
||||
|
||||
import main.Joueur;
|
||||
import main.Type;
|
||||
|
||||
public class CarteEquipementEffet<T extends Type> extends CarteEquipement<Type> {
|
||||
|
||||
public CarteEquipementEffet(String nom, String description) {
|
||||
super(nom, description);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -7036514419711836673L;
|
||||
|
||||
@Override
|
||||
public void reverse(Joueur j) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user