lazarus-ccr/applications/fpchess/fpchess.lpr
2011-09-01 05:41:04 +00:00

26 lines
562 B
ObjectPascal

program fpchess;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, lnetbase, mainform, chessdrawer, chessgame, chessconfig,
chesstcputils, chessmodules, mod_samecomputer, mod_fics, mod_kcchess,
selectPromotionPiece
{$ifdef FPCHESS_WEBSERVICES}
,IDelphiChess_Intf
{$endif};
//{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TformChess, formChess);
Application.CreateForm(TformPromotion, formPromotion);
Application.Run;
end.