diff --git a/src/main/java/inf112/fiasko/roborally/objects/ICardWithoutSuit.java b/src/main/java/inf112/fiasko/roborally/objects/ICardWithoutSuit.java index 4ec4718..b146361 100644 --- a/src/main/java/inf112/fiasko/roborally/objects/ICardWithoutSuit.java +++ b/src/main/java/inf112/fiasko/roborally/objects/ICardWithoutSuit.java @@ -1,33 +1,20 @@ package inf112.fiasko.roborally.objects; /** - * This Interface describes a card - * @param the type for the card value - * @param the type for the symbol + * This Interface describes a card without a card suit + * @param The value type + * @param The symbol type */ public interface ICardWithoutSuit { /** * Gets the value of the card - * @return card value + * @return The card value */ S getValue(); /** * Gets the symbol of the card - * @return card symbol + * @return The card symbol */ T getSymbol(); - - /** - * Sets the value of the card - * @param value card value - */ - void setValue(S value); - - /** - * Sets the symbol of the card - * @param symbol card symbol - */ - void setSymbol(T symbol); - }