moved ICardWithOutSuit to objekt package

This commit is contained in:
Tobydrama
2020-02-22 14:54:05 +01:00
parent 21f9b96273
commit 42eca0fb3d

View File

@ -1,21 +0,0 @@
package inf112.fiasko.roborally.element_properties;
/**
* This Interface describes a card
* @param <S> the type for the card value
* @param <T> the type for the symbol
*/
public interface ICardWithOutSuit<S,T> {
/**
* Gets the value of the card
* @return card value
*/
S getValue();
/**
* Gets the symbol of the card
* @return card symbol
*/
T getSymbol();
}