|
Last change
on this file was 93, checked in by chronos, 3 years ago |
- Added: Support for train carriages.
- Added: City support implementation preparation.
|
|
File size:
759 bytes
|
| Line | |
|---|
| 1 | program BigMetro;
|
|---|
| 2 |
|
|---|
| 3 | {$mode objfpc}{$H+}
|
|---|
| 4 |
|
|---|
| 5 | uses
|
|---|
| 6 | {$IFDEF UNIX}
|
|---|
| 7 | cthreads, clocale,
|
|---|
| 8 | {$ENDIF}
|
|---|
| 9 | Interfaces, // this includes the LCL widgetset
|
|---|
| 10 | Forms, SysUtils, UFormMain, UFormImages, Common, UMenu, UControls,
|
|---|
| 11 | UMetroPassenger, UColors, UView, URiver, UCity;
|
|---|
| 12 |
|
|---|
| 13 | {$R *.res}
|
|---|
| 14 |
|
|---|
| 15 | {$if declared(UseHeapTrace)}
|
|---|
| 16 | const
|
|---|
| 17 | HeapTraceLog = 'heaptrclog.trc';
|
|---|
| 18 | {$ENDIF}
|
|---|
| 19 |
|
|---|
| 20 | begin
|
|---|
| 21 | {$if declared(UseHeapTrace)}
|
|---|
| 22 | // Heap trace
|
|---|
| 23 | DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
|
|---|
| 24 | SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
|
|---|
| 25 | {$ENDIF}
|
|---|
| 26 |
|
|---|
| 27 | RequireDerivedFormResource := True;
|
|---|
| 28 | Application.Scaled:=True;
|
|---|
| 29 | Application.Initialize;
|
|---|
| 30 | Application.CreateForm(TFormMain, FormMain);
|
|---|
| 31 | Application.CreateForm(TFormImages, FormImages);
|
|---|
| 32 | Application.Run;
|
|---|
| 33 | end.
|
|---|
| 34 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.