A simple Font renderer for MCP.
How to add:
- Change all the package names to your own.
- In FontRenderer.java line 31 Change the location to your own folder.
How to use:
NEEDED A FONT FOLDER.
public static FontRenderer fr = new FontRenderer("Moon Light", 20, Font.PLAIN, true, true);
fr.drawStringWithShadow("Your String", 3, 3, Color.WHITE.getRGB());
OR
NOT NEEDED A FONT FOLDER.
public static FontRenderer fr = new FontRenderer(new Font("Moon Light", 20, Font.PLAIN), true, true);
fr.drawStringWithShadow("Your String", 3, 3, Color.WHITE.getRGB());