Java Code Examples for com.megacrit.cardcrawl.helpers.FontHelper#energyNumFontRed()

The following examples show how to use com.megacrit.cardcrawl.helpers.FontHelper#energyNumFontRed() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Cull.java    From jorbs-spire-mod with MIT License 4 votes vote down vote up
@Override
public BitmapFont getEnergyNumFont() {
    return FontHelper.energyNumFontRed;
}
 
Example 2
Source File: TheTranquil.java    From FruityMod-StS with MIT License 4 votes vote down vote up
@Override
public BitmapFont getEnergyNumFont() {
    return FontHelper.energyNumFontRed;
}
 
Example 3
Source File: TheSeeker.java    From FruityMod-StS with MIT License 4 votes vote down vote up
@Override
public BitmapFont getEnergyNumFont() {
    return FontHelper.energyNumFontRed;
}
 
Example 4
Source File: TheDefault.java    From StS-DefaultModBase with MIT License 4 votes vote down vote up
@Override
public BitmapFont getEnergyNumFont() {
    return FontHelper.energyNumFontRed;
}