Building package moved
This commit is contained in:
@@ -0,0 +1,14 @@
|
|||||||
|
package it.polimi.ingsw.gc14.Model.Cards.TribeCards.Building;
|
||||||
|
|
||||||
|
public abstract class BuildingEffect {
|
||||||
|
private EffectType effectType;
|
||||||
|
public EffectType getEffectType() {
|
||||||
|
return effectType;
|
||||||
|
}
|
||||||
|
public BuildingEffect (EffectType effectType)
|
||||||
|
{
|
||||||
|
this.effectType = effectType;
|
||||||
|
}
|
||||||
|
//TO DO
|
||||||
|
public abstract void applyEffect(Object player);
|
||||||
|
}
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
package it.polimi.ingsw.gc14.Model.Cards.TribeCards.Building;
|
||||||
|
|
||||||
|
public enum EffectType {
|
||||||
|
FINAL, CARDSET,INVENTORPAIR, ON_EVENT , END_TURN
|
||||||
|
}
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
package it.polimi.ingsw.gc14.Model.Cards.TribeCards.Building;
|
|
||||||
|
|
||||||
public class BuildingEffect {
|
|
||||||
}
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
package it.polimi.ingsw.gc14.Model.Cards.TribeCards.Building;
|
|
||||||
|
|
||||||
public class EffectType {
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user