home *** CD-ROM | disk | FTP | other *** search
/ Quake++ for Quake / Quake++.iso / quake / project1.~dp < prev    next >
Encoding:
Text File  |  1996-09-18  |  528 b   |  24 lines

  1. program Project1;
  2.  
  3. uses
  4.   Forms,
  5.   Unit1 in 'UNIT1.PAS' {Form1},
  6.   Unit2 in 'UNIT2.PAS' {r},
  7.   Unit3 in 'UNIT3.PAS' {d},
  8.   Unit4 in 'UNIT4.PAS' {ti},
  9.   Fmxutils in 'FMXUTILS.PAS',
  10.   Unit5 in 'UNIT5.PAS' {where},
  11.   Unit6 in 'UNIT6.PAS' {ren};
  12.  
  13. {$R *.RES}
  14.  
  15. begin
  16.   Application.CreateForm(TForm1, Form1);
  17.   Application.CreateForm(Tr, r);
  18.   Application.CreateForm(Td, d);
  19.   Application.CreateForm(Tti, ti);
  20.   Application.CreateForm(Twhere, where);
  21.   Application.CreateForm(Tren, ren);
  22.   Application.Run;
  23. end.
  24.