Back to project page Airplanes.
The source code is released under:
GNU General Public License
If you think the Android project Airplanes listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.axnsan.airplanes.util; //from ww w.j a va 2s . co m import com.badlogic.gdx.graphics.g2d.BitmapFont; public interface FontManagerInterface { /**Returns the largest font that is smaller than the given size*/ public BitmapFont getFontForHeight(Integer size); public BitmapFont getFontForHeight(float size); public void dispose(); }