home *** CD-ROM | disk | FTP | other *** search
- //
-
- // File : TicTacToe.dpr
-
- //
-
- // Project : PCProject
-
- // Configuration : PCConfig 1
-
- // Phase : Implementation 1
-
- // System : TicTacToe 1
-
- //
-
- program TicTacToe;
-
-
-
- uses
-
- ClassDict in '..\src\ClassDict.pas', // For qualified associations
-
- Forms,
-
- TicTacToe_GameUnit in 'TicTacToe_GameUnit.pas',
-
- TicTacToe_ComputerUnit in 'TicTacToe_ComputerUnit.pas',
-
- TicTacToe_CellUnit in 'TicTacToe_CellUnit.pas',
-
- TTicTacToe_GUIUnit in 'TTicTacToe_GUIUnit.pas' {TicTacToe_GUI}
-
- ;
-
-
-
- {$R *.RES}
-
-
-
- begin
-
- Application.Initialize;
-
- Application.CreateForm(TTicTacToe_GUI, TicTacToe_GUI);
-
- Application.Run;
-
- end.
-
-
-
-
-
- // Do not delete this block -- regeneration marker -- start
-
- // TTicTacToe_GUIUnit
-
- // TicTacToe_CellUnit
-
- // TicTacToe_ComputerUnit
-
- // TicTacToe_GameUnit
-
- // Do not delete this block -- regeneration marker -- end
-
-