source: trunk/Dune2.lpr

Last change on this file was 4, checked in by chronos, 8 years ago
  • Added: Not finished class for loading WSA files.
File size: 566 bytes
Line 
1program Dune2;
2
3{$mode objfpc}{$H+}
4
5uses
6 {$IFDEF UNIX}{$IFDEF UseCThreads}
7 cthreads,
8 {$ENDIF}{$ENDIF}
9 Interfaces, // this includes the LCL widgetset
10 Forms, UFormMain, UCore, UPakFile, CoolStreaming, Common, TemplateGenerics,
11 UGame, UFile1, UEngFile, UFormLog, UShpFile, UDecode
12 { you can add units after this };
13
14{$R *.res}
15
16begin
17 RequireDerivedFormResource := True;
18 Application.Initialize;
19 Application.CreateForm(TCore, Core);
20 Application.CreateForm(TFormMain, FormMain);
21 Application.CreateForm(TFormLog, FormLog);
22 Application.Run;
23end.
24
Note: See TracBrowser for help on using the repository browser.