| 12345678910111213141516 |
- (*
- Simple gallery of effects.
- *)
- program PFXGalleryD;
- uses
- Forms,
- fPFXGalleryD in 'fPFXGalleryD.pas' {FormPFXGallery};
- {$R *.res}
- begin
- Application.Initialize;
- Application.CreateForm(TFormPFXGallery, FormPFXGallery);
- Application.Run;
- end.
|