Changeset 28 for trunk/tunneler.lpr
- Timestamp:
- Oct 3, 2011, 8:17:16 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tunneler.lpr
r21 r28 9 9 {$ENDIF}{$ENDIF} 10 10 Interfaces, // this includes the LCL widgetset 11 Forms, UCore, TemplateGenerics, CoolTranslator, UPlatform, 11 Forms, UCore, TemplateGenerics, CoolTranslator, UPlatform, FileUtil, SysUtils, 12 12 UApplicationInfo, URectangle, UPersistentForm, URegistry, UThreading, 13 UNewGameForm, UMainForm, UMapForm 13 UNewGameForm, UMainForm, UMapForm, UDebugForm, UGameResultsForm 14 14 { you can add units after this }; 15 15 16 16 {$R *.res} 17 17 18 {$IFDEF DEBUG} 19 const 20 HeapTraceLog = 'heaptrclog.trc'; 21 {$ENDIF} 22 18 23 begin 24 {$IFDEF DEBUG} 25 // Heap trace 26 DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog); 27 SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog); 28 {$ENDIF} 29 19 30 Application.Initialize; 20 31 Application.CreateForm(TMainForm, MainForm); 21 32 Application.CreateForm(TMapForm, MapForm); 22 33 Application.CreateForm(TNewGameForm, NewGameForm); 34 {$IFDEF DEBUG} 35 Application.CreateForm(TDebugForm, DebugForm); 36 {$ENDIF} 23 37 Application.Run; 24 38 end.
Note:
See TracChangeset
for help on using the changeset viewer.