2010-09-16 11:52:47 +00:00
|
|
|
program fpchess;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
uses
|
|
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
|
|
cthreads,
|
|
|
|
{$ENDIF}{$ENDIF}
|
|
|
|
Interfaces, // this includes the LCL widgetset
|
2010-10-06 15:59:48 +00:00
|
|
|
Forms, lnetvisual, mainform, chessdrawer, chessgame, chessconfig,
|
2010-10-06 13:34:34 +00:00
|
|
|
chesstcputils;
|
2010-09-16 11:52:47 +00:00
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
begin
|
|
|
|
Application.Initialize;
|
2010-09-21 06:33:18 +00:00
|
|
|
Application.CreateForm(TformChess, formChess);
|
2010-09-16 11:52:47 +00:00
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|
|
|