|
|
@ -0,0 +1,21 @@ |
|
|
|
package solitaer; |
|
|
|
|
|
|
|
public class GeberStack extends BaseStack { |
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
public GeberStack(int _x, int _y) { |
|
|
|
super(false); |
|
|
|
super.setLocation(_x, _y); |
|
|
|
super.setSize(IMAGE_WIDTH, STACK_HIGHT); |
|
|
|
super.setOpaque(false); |
|
|
|
super.setLayout(null); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
protected boolean cardCheck(Card _topStack, Card _playerCard) { |
|
|
|
// TODO Auto-generated method stub |
|
|
|
return false; |
|
|
|
} |
|
|
|
|
|
|
|
} |