home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 25: Programming / pc_actual_25.iso / Delphi / Morfit 3D Engine SDK / SDK30Delphi.exe / FILES / 181 / Hello3D.exe / Light.dpr < prev    next >
Encoding:
Text File  |  2001-09-17  |  242 b   |  15 lines

  1. program Light;
  2.  
  3. uses
  4.   Forms,
  5.   morfitD in '..\..\..\Engine\Include\morfitD.pas',
  6.   Unit1 in 'Src\Unit1.pas' {Form1};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.