forked from External/mage
* GUI: new reworked GUI and card render engine, card icons and dozens of other fixes (see full list in related PR);
This commit is contained in:
parent
df98cc3e62
commit
a1da5ef437
304 changed files with 7266 additions and 5093 deletions
|
|
@ -1,25 +1,29 @@
|
|||
|
||||
|
||||
package mage.client.cards;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.client.deckeditor.SortSetting;
|
||||
import mage.client.util.Event;
|
||||
import mage.client.util.Listener;
|
||||
import mage.view.CardsView;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* Interface for card container.
|
||||
*
|
||||
* @author nantuko
|
||||
*
|
||||
* @author nantuko
|
||||
*/
|
||||
public interface ICardGrid {
|
||||
void clearCardEventListeners();
|
||||
|
||||
void addCardEventListener(Listener<Event> listener);
|
||||
|
||||
void drawCards(SortSetting sortSetting);
|
||||
|
||||
void loadCards(CardsView showCards, SortSetting sortSetting, BigCard bigCard, UUID gameId);
|
||||
|
||||
void loadCards(CardsView showCards, SortSetting sortSetting, BigCard bigCard, UUID gameId, boolean merge);
|
||||
|
||||
void refresh();
|
||||
|
||||
int cardsSize();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue