aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/cc/polyfrost/oneconfig/lwjgl/font/Fonts.java
blob: 74d78287595878c7b10ac74514d050938aef17bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cc.polyfrost.oneconfig.lwjgl.font;

public enum Fonts {
    BOLD(new Font("inter-bold", "/assets/oneconfig/font/Bold.otf")),
    SEMIBOLD(new Font("inter-semibold", "/assets/oneconfig/font/SemiBold.otf")),
    MEDIUM(new Font("inter-medium", "/assets/oneconfig/font/Medium.otf")),
    REGULAR(new Font("inter-regular", "/assets/oneconfig/font/Regular.otf")),
    MINECRAFT_REGULAR(new Font("mc-regular", "/assets/oneconfig/font/Minecraft-Regular.otf")),
    MINECRAFT_BOLD(new Font("mc-bold", "/assets/oneconfig/font/Minecraft-Bold.otf"));
    public final Font font;

    Fonts(Font font) {
        this.font = font;
    }
}