Gjenoppretter elementer fjernet under opprydding

This commit is contained in:
2020-02-26 09:17:06 +01:00
parent 620625f31f
commit c8179b8e27
3 changed files with 49 additions and 2 deletions

View File

@ -0,0 +1,20 @@
package inf112.fiasko.roborally.objects;
/**
* This Interface describes a card without a card suit
* @param <S> The value type
* @param <T> The symbol type
*/
public interface ICardWithoutSuit<S,T> {
/**
* Gets the value of the card
* @return The card value
*/
S getValue();
/**
* Gets the symbol of the card
* @return The card symbol
*/
T getSymbol();
}