home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TEECHART / Delphi1_And_Delphi2 / EXAMPLES / PACMAN / TEEPAC.DPR next >
Encoding:
Text File  |  1998-10-24  |  343 b   |  17 lines

  1. program Teepac;
  2.  
  3. uses
  4.   Forms,
  5.   Upacman in 'UPACMAN.PAS' {TeePacForm},
  6.   Uabout in 'UABOUT.PAS' {AboutTeePac},
  7.   Uteehelp in 'UTEEHELP.PAS' {TeeHelp},
  8.   Urankin in 'URANKIN.PAS' {TeeRanking},
  9.   Udesign in 'UDESIGN.PAS' {TeeDesign};
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.CreateForm(TTeePacForm, TeePacForm);
  15.   Application.Run;
  16. end.
  17.