public void LoadFont(string flfFontFile) { _font = new FigletFont(flfFontFile); }
public Figlet() { _font = new FigletFont(); }
/// <summary> /// Loads a .flf font file. /// First version used in: 1.0. /// NEW IN VERSION 1.1: Now returns _font for debugging. /// </summary> /// <param name="flfFontFile">The path to the file to load. These are at jave.de/figlet/fonts.html.</param> public FigletFont LoadFont(string flfFontFile) { _font = new FigletFont(flfFontFile); return _font; }