added new methods to ICardWithOutSuit interface

This commit is contained in:
Tobydrama 2020-02-22 15:01:38 +01:00
parent 42eca0fb3d
commit 2f2d874ea7

View File

@ -18,4 +18,16 @@ public interface ICardWithOutSuit<S,T> {
*/
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);
}