net.mostlyoriginal.api.component.ui.BitmapFontAsset Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of contrib-jam Show documentation
Show all versions of contrib-jam Show documentation
Jam bundle of systems and components!
The newest version!
package net.mostlyoriginal.api.component.ui;
import com.badlogic.gdx.graphics.g2d.BitmapFont;
import net.mostlyoriginal.api.component.common.ExtendedComponent;
/**
* @author Daan van Yperen
*/
public class BitmapFontAsset extends ExtendedComponent {
public BitmapFont bitmapFont;
@Override
public void set(BitmapFontAsset asset) {
bitmapFont = asset.bitmapFont;
}
@Override
protected void reset() {
bitmapFont = null;
}
public BitmapFontAsset() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy