blob: 03352a98e269bda0015c0d6e0ff98e3f8e922d4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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(new Font("mc-regular", "/assets/oneconfig/font/Minecraft.otf"));
public final Font font;
Fonts(Font font) {
this.font = font;
}
}
|