PFXGalleryD.dpr 253 B

12345678910111213141516
  1. (*
  2. Simple gallery of effects.
  3. *)
  4. program PFXGalleryD;
  5. uses
  6. Forms,
  7. fPFXGalleryD in 'fPFXGalleryD.pas' {FormPFXGallery};
  8. {$R *.res}
  9. begin
  10. Application.Initialize;
  11. Application.CreateForm(TFormPFXGallery, FormPFXGallery);
  12. Application.Run;
  13. end.