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