FogD.dpr 249 B

12345678910111213141516
  1. { demo showing the use of fog in GLScene
  2. 20/07/03 - php - started
  3. }
  4. program FogD;
  5. uses
  6. Forms,
  7. fFogD in 'fFogD.pas' {FormFog};
  8. {$R *.res}
  9. begin
  10. Application.Initialize;
  11. Application.CreateForm(TFormFog, FormFog);
  12. Application.Run;
  13. end.