Panel for controlling content.

This commit is contained in:
WickedJack99
2023-11-01 20:56:02 +01:00
parent 31fdecff3d
commit 49e863fbad

View File

@@ -0,0 +1,23 @@
/**
* @author Aaron Moser
* @date 31.10.2023
*/
package gui.src.panels;
import javax.swing.JPanel;
public class ControllingPanel extends JPanel {
private static ControllingPanel instance;
private ControllingPanel() {
}
public static ControllingPanel getInstance() {
if (null == instance) {
instance = new ControllingPanel();
}
return instance;
}
}