Package transientlibs.preui.agents.factories

Source Code of transientlibs.preui.agents.factories.FontFactory

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package transientlibs.preui.agents.factories;

import com.badlogic.gdx.graphics.g2d.BitmapFont;

import transientlibs.preui.objects.gui.interfaces.IFont;
import transientlibs.preui.objects.gui.elements.TransientGDXFont;


/**
*
** @author kibertoad
*/
public class FontFactory {
   
    /*
        public IFont produceFont (Font font, String setName) {
        return new TransientSlickFont(font, setName);
    }
    */
       
        public IFont produceFont (BitmapFont font) {
        return new TransientGDXFont(font);
    }       
   
}
TOP

Related Classes of transientlibs.preui.agents.factories.FontFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.