All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.mostlyoriginal.api.component.ui.Font Maven / Gradle / Ivy

The newest version!
package net.mostlyoriginal.api.component.ui;

import net.mostlyoriginal.api.component.common.ExtendedComponent;

/**
 * @author Daan van Yperen
 */
public class Font extends ExtendedComponent {

	public String fontName;
	public float scale = 1f;

	public Font() {}
	public Font(String fontName) {
		this.fontName = fontName;
	}

	@Override
	public void set(Font font) {
		fontName = font.fontName;
	}

	@Override
	protected void reset() {
		fontName = null;
		scale = 1f;
	}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy