blob: 3120c7b92c9875981552d623348a570f19056731 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package cc.polyfrost.oneconfig.renderer.font;
public class Fonts {
public static final Font BOLD = new Font("inter-bold", "/assets/oneconfig/font/Bold.otf");
public static final Font SEMIBOLD = new Font("inter-semibold", "/assets/oneconfig/font/SemiBold.otf");
public static final Font MEDIUM = new Font("inter-medium", "/assets/oneconfig/font/Medium.otf");
public static final Font REGULAR = new Font("inter-regular", "/assets/oneconfig/font/Regular.otf");
public static final Font MINECRAFT_REGULAR = new Font("mc-regular", "/assets/oneconfig/font/Minecraft-Regular.otf");
public static final Font MINECRAFT_BOLD = new Font("mc-bold", "/assets/oneconfig/font/Minecraft-Bold.otf");
}
|