Subversion Repositories AndroidProjects

Rev

Rev 371 | Rev 374 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.gebauz.tools;

import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;
import com.gebauz.tools.FontPotApp;


/**
 * This tool converts PopCap FontTool fonts into binary format and rearranges the texture into power of two format.
 * @author chris
 *
 */

public class FontPot
{
        public static void main(String[] args)
        {
                LwjglApplicationConfiguration cfg = new LwjglApplicationConfiguration();
                cfg.title = "Pon Pon Chun";
                cfg.useGL20 = true;
                cfg.width = 800;
                cfg.height = 480;
               
                new LwjglApplication(new FontPotApp(), cfg);
        }

}