foul-magics/Mage.Client/src/main/java/mage/client/cards/DragCardSource.java
Mark Langen 3c2c793f5d Drag n Drop Deck Editor WIP
* Working standalone proof-of-concept application in DragCardGrid.

* Still needs listener functionality in order to integrate it into the existing DeckEditorPanel class.
2016-09-28 20:57:22 -06:00

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);
}