home *** CD-ROM | disk | FTP | other *** search
/ Chip: Shareware for Win 95 / Chip-Shareware-Win95.bin / ostatni / delphi / delphi1 / lmdtoolb.exe / demos / bitmap / texturev.dpr < prev    next >
Encoding:
Text File  |  1995-08-06  |  273 b   |  16 lines

  1. program Texturev;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {test},
  6.   Unit1 in 'UNIT1.PAS' {Form1};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Title := 'Texture Tester';
  12.   Application.CreateForm(Ttest, test);
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.Run;
  15. end.
  16.