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 >
Encoding:
Text File  |  1997-08-20  |  906 b   |  35 lines

  1. //
  2.  
  3. // File          : TicTacToe.dpr
  4.  
  5. //
  6.  
  7. // Project       : PCProject
  8.  
  9. // Configuration : PCConfig 1
  10.  
  11. // Phase         : Implementation 1
  12.  
  13. // System        : TicTacToe 1
  14.  
  15. //
  16.  
  17. program TicTacToe;
  18.  
  19.  
  20.  
  21. uses
  22.  
  23.   ClassDict in '..\src\ClassDict.pas',    // For qualified associations
  24.  
  25.   Forms,
  26.  
  27.   TicTacToe_GameUnit in 'TicTacToe_GameUnit.pas',
  28.  
  29.   TicTacToe_ComputerUnit in 'TicTacToe_ComputerUnit.pas',
  30.  
  31.   TicTacToe_CellUnit in 'TicTacToe_CellUnit.pas',
  32.  
  33.   TTicTacToe_GUIUnit in 'TTicTacToe_GUIUnit.pas'  {TicTacToe_GUI}
  34.  
  35.   ;
  36.  
  37.  
  38.  
  39. {$R *.RES}
  40.  
  41.  
  42.  
  43. begin
  44.  
  45.   Application.Initialize;    
  46.  
  47.   Application.CreateForm(TTicTacToe_GUI, TicTacToe_GUI);
  48.  
  49.   Application.Run;
  50.  
  51. end.
  52.  
  53.  
  54.  
  55.  
  56.  
  57. // Do not delete this block -- regeneration marker -- start
  58.  
  59. // TTicTacToe_GUIUnit
  60.  
  61. // TicTacToe_CellUnit
  62.  
  63. // TicTacToe_ComputerUnit
  64.  
  65. // TicTacToe_GameUnit
  66.  
  67. // Do not delete this block -- regeneration marker -- end
  68.  
  69.