forked from External/mage
* Working standalone proof-of-concept application in DragCardGrid. * Still needs listener functionality in order to integrate it into the existing DeckEditorPanel class.
14 lines
284 B
Java
14 lines
284 B
Java
package mage.client.cards;
|
|
|
|
import mage.view.CardView;
|
|
|
|
import java.util.Collection;
|
|
|
|
/**
|
|
* Created by StravantUser on 2016-09-22.
|
|
*/
|
|
public interface DragCardSource {
|
|
Collection<CardView> dragCardList();
|
|
void dragCardBegin();
|
|
void dragCardEnd(DragCardTarget target);
|
|
}
|