fonts = new ArrayList<IFont>();
suffixToFactory = new HashMap<String, IFontFactory>();
//Register default font factories
this.registerFontFactory(".ttf", new TTFontFactory());
this.registerFontFactory(".svg", new SvgFontFactory());
BitmapFontFactory bitmapFontFactory = new BitmapFontFactory();
// this.registerFontFactory(".ttf", bitmapFontFactory); // TEST
this.registerFontFactory("", bitmapFontFactory);
this.registerFontFactory(".vlw", bitmapFontFactory);