program Dune2; {$mode objfpc}{$H+} uses {$IFDEF UNIX}{$IFDEF UseCThreads} cthreads, {$ENDIF}{$ENDIF} Interfaces, // this includes the LCL widgetset Forms, UFormMain, UCore, UPakFile, CoolStreaming, Common, TemplateGenerics, UGame, UFile1, UEngFile, UFormLog, UShpFile, UDecode { you can add units after this }; {$R *.res} begin RequireDerivedFormResource := True; Application.Initialize; Application.CreateForm(TCore, Core); Application.CreateForm(TFormMain, FormMain); Application.CreateForm(TFormLog, FormLog); Application.Run; end.