Rogue: Savage Rats, a retro-themed dungeon crawler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
rogue-savage-rats/src/mightypork/rogue/fonts/NullFont.java

56 lines
699 B

package mightypork.rogue.fonts;
import mightypork.utils.math.color.RGB;
import mightypork.utils.math.coord.Coord;
/**
* Null font used where real resource could not be loaded.
*
* @author MightyPork
*/
public class NullFont implements GLFont {
@Override
public void draw(String str, RGB color)
{
// nope
}
@Override
public void draw(String str, RGB color, int startIndex, int endIndex)
{
// nope
}
@Override
public void draw(String str)
{
// nope
}
@Override
public Coord getNeededSpace(String str)
{
return Coord.zero();
}
@Override
public int getHeight()
{
return 0;
}
@Override
public int getWidth(String text)
{
return 0;
}
}