forked from External/mage
Moved card layout strategy to separate class
This commit is contained in:
parent
0e71ac5e53
commit
ca49dc7a31
4 changed files with 119 additions and 76 deletions
|
|
@ -0,0 +1,13 @@
|
|||
package mage.client.util.layout;
|
||||
|
||||
import javax.swing.*;
|
||||
|
||||
/**
|
||||
* Interface for operations that modify cards' layout
|
||||
*
|
||||
* @author noxx
|
||||
*/
|
||||
public interface CardLayoutStrategy {
|
||||
|
||||
void doLayout(JLayeredPane jLayeredPane, int width);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue