2010-09-16 11:52:47 +00:00
|
|
|
program fpchess;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
uses
|
2012-02-05 22:43:05 +00:00
|
|
|
{$IFDEF UNIX}
|
2010-09-16 11:52:47 +00:00
|
|
|
cthreads,
|
2012-02-05 22:43:05 +00:00
|
|
|
{$ENDIF}
|
2010-09-16 11:52:47 +00:00
|
|
|
Interfaces, // this includes the LCL widgetset
|
2011-08-27 20:14:54 +00:00
|
|
|
Forms, lnetbase, mainform, chessdrawer, chessgame, chessconfig,
|
2011-09-01 05:41:04 +00:00
|
|
|
chesstcputils, chessmodules, mod_samecomputer, mod_fics, mod_kcchess,
|
2011-09-07 17:43:42 +00:00
|
|
|
selectPromotionPiece, ltelnetex, winboardConn, mod_winboard
|
2011-08-27 20:14:54 +00:00
|
|
|
{$ifdef FPCHESS_WEBSERVICES}
|
|
|
|
,IDelphiChess_Intf
|
|
|
|
{$endif};
|
2010-09-16 11:52:47 +00:00
|
|
|
|
2011-04-04 16:09:05 +00:00
|
|
|
//{$R *.res}
|
2010-09-16 11:52:47 +00:00
|
|
|
|
|
|
|
begin
|
|
|
|
Application.Initialize;
|
2010-09-21 06:33:18 +00:00
|
|
|
Application.CreateForm(TformChess, formChess);
|
2011-09-01 05:41:04 +00:00
|
|
|
Application.CreateForm(TformPromotion, formPromotion);
|
2010-09-16 11:52:47 +00:00
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|
|
|