21 lines
388 B
Java
21 lines
388 B
Java
import java.awt.Dimension;
|
|
import java.awt.GridLayout;
|
|
import java.awt.event.ActionEvent;
|
|
import java.awt.event.ActionListener;
|
|
import java.awt.geom.Point2D;
|
|
|
|
import javax.swing.ImageIcon;
|
|
import javax.swing.JButton;
|
|
import javax.swing.JPanel;
|
|
|
|
|
|
public class BottomBar extends JPanel {
|
|
|
|
public BottomBar(FestivalPanel fp)
|
|
{
|
|
super();
|
|
setPreferredSize(new Dimension(0, 50));
|
|
|
|
}
|
|
}
|