|
|
@ -0,0 +1,14 @@ |
|
|
|
package Gui; |
|
|
|
|
|
|
|
import javax.swing.JPanel; |
|
|
|
|
|
|
|
public class GameGui { |
|
|
|
public static JPanel MainPanel, ButtonPanel, headingPanel; |
|
|
|
|
|
|
|
|
|
|
|
public void createGui() { |
|
|
|
MainPanel = new JPanel(); |
|
|
|
ButtonPanel = new JPanel(); |
|
|
|
headingPanel = new JPanel(); |
|
|
|
} |
|
|
|
} |