Fucking much stuff done.

This commit is contained in:
Noah
2021-12-14 23:22:01 +01:00
parent 546b538c99
commit 244a6ff839
14 changed files with 90891 additions and 512406 deletions
+4
View File
@@ -11,7 +11,9 @@ public abstract class GUI {
protected final int offset = 20;
protected Control control;
protected Font head;
protected Font sub_head;
protected Font text;
protected Font small;
protected boolean sliderLocked = false;
public GUI(Control control){
@@ -21,7 +23,9 @@ public abstract class GUI {
public void initPublicComponents() {
head = new Font("Segoe UI Light", Font.PLAIN, 24);
sub_head = new Font("Segoe UI Light", Font.PLAIN, 20);
text = new Font("Segoe UI Light", Font.PLAIN, 16);
small = new Font("Segoe UI Light", Font.PLAIN, 16);
}