Fog.dpr 246 B

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