Last change
on this file since 34 was 29, checked in by chronos, 10 years ago |
- Added: Not finished support for map rivers.
- Added: Design a prototype of better track structure in UTrack.
- Added: To allow zooming of graphic canvas should store drawing elements in abstract structure TMetaCanvas.
|
File size:
660 bytes
|
Line | |
---|
1 | program BigMetro;
|
---|
2 |
|
---|
3 | {$mode objfpc}{$H+}
|
---|
4 |
|
---|
5 | uses
|
---|
6 | {$IFDEF UNIX}{$IFDEF UseCThreads}
|
---|
7 | cthreads,
|
---|
8 | {$ENDIF}{$ENDIF}
|
---|
9 | Interfaces, // this includes the LCL widgetset
|
---|
10 | Forms, SysUtils, UFormMain, UEngine, UGeometric, UTrack, UMetaCanvas
|
---|
11 | { you can add units after this };
|
---|
12 |
|
---|
13 | {$R *.res}
|
---|
14 |
|
---|
15 | {$IFDEF DEBUG}
|
---|
16 | const
|
---|
17 | HeapTraceLog = 'heaptrclog.trc';
|
---|
18 | {$ENDIF}
|
---|
19 |
|
---|
20 | begin
|
---|
21 | {$IFDEF DEBUG}
|
---|
22 | // Heap trace
|
---|
23 | DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
|
---|
24 | SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
|
---|
25 | {$ENDIF}
|
---|
26 |
|
---|
27 | RequireDerivedFormResource := True;
|
---|
28 | Application.Initialize;
|
---|
29 | Application.CreateForm(TFormMain, FormMain);
|
---|
30 | Application.Run;
|
---|
31 | end.
|
---|
32 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.