Fixed structure of UI, Added some logic to Auth

This commit is contained in:
maciejrusek
2026-04-28 20:33:08 +02:00
parent f306606b34
commit 54c7bb47b5
9 changed files with 150 additions and 53 deletions

View File

@@ -0,0 +1,13 @@
package ui;
import javax.swing.*;
import java.util.function.Consumer;
public abstract class BasePanel extends JPanel {
protected Consumer<String> changePanel;
public BasePanel(Consumer<String> changePanel) {
this.changePanel = changePanel;
}
}