fontgen.dpr 198 B

12345678910111213
  1. program fontgen;
  2. uses
  3. Forms,
  4. fFontGen in 'fFontGen.pas' {FormFontGen};
  5. {$R *.res}
  6. begin
  7. Application.Initialize;
  8. Application.CreateForm(TFormFontGen, FormFontGen);
  9. Application.Run;
  10. end.