build fix

This commit is contained in:
magenoxx 2014-06-02 16:01:47 +04:00
parent 4e1901166b
commit c09215a7f3

View file

@ -0,0 +1,17 @@
package mage.client.util.layout;
import javax.swing.*;
/**
* Interface for operations that modify cards' layout
*
* @author noxx
*/
public interface CardLayoutStrategy {
int getDefaultZOrder();
void onAdd(JLayeredPane jLayeredPane);
void doLayout(JLayeredPane jLayeredPane, int battlefieldWidth);
}