home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / TicTacToe.dpr < prev    next >
Text File  |  1997-08-20  |  906b  |  35 lines

  1. //
  2. // File          : TicTacToe.dpr
  3. //
  4. // Project       : PCProject
  5. // Configuration : PCConfig 1
  6. // Phase         : Implementation 1
  7. // System        : TicTacToe 1
  8. //
  9. program TicTacToe;
  10.  
  11. uses
  12.   ClassDict in '..\src\ClassDict.pas',    // For qualified associations
  13.   Forms,
  14.   TicTacToe_GameUnit in 'TicTacToe_GameUnit.pas',
  15.   TicTacToe_ComputerUnit in 'TicTacToe_ComputerUnit.pas',
  16.   TicTacToe_CellUnit in 'TicTacToe_CellUnit.pas',
  17.   TTicTacToe_GUIUnit in 'TTicTacToe_GUIUnit.pas'  {TicTacToe_GUI}
  18.   ;
  19.  
  20. {$R *.RES}
  21.  
  22. begin
  23.   Application.Initialize;    
  24.   Application.CreateForm(TTicTacToe_GUI, TicTacToe_GUI);
  25.   Application.Run;
  26. end.
  27.  
  28.  
  29. // Do not delete this block -- regeneration marker -- start
  30. // TTicTacToe_GUIUnit
  31. // TicTacToe_CellUnit
  32. // TicTacToe_ComputerUnit
  33. // TicTacToe_GameUnit
  34. // Do not delete this block -- regeneration marker -- end
  35.