forked from P33a/SimTwo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimTwo.lpr
52 lines (48 loc) · 1.56 KB
/
SimTwo.lpr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
program SimTwo;
{$MODE Delphi}
uses
SyncObjs,
Forms, Interfaces,
Viewer in 'Viewer.pas' {FViewer},
Params in 'Params.pas' {FParams},
Editor in 'Editor.pas' {FEditor},
FastChart in 'FastChart.pas' {FFastChart},
Remote in 'Remote.pas',
ODERobots in 'ODERobots.pas',
ODERobotsPublished in 'ODERobotsPublished.pas',
uPSI_ODERobotsPublished in 'uPSI_ODERobotsPublished.pas',
ProjConfig in 'ProjConfig.pas',
Utils in 'Utils.pas',
WayPointsEdit in 'WayPointsEdit.pas' {FWayPointsEdit},
VerInfo in 'VerInfo.pas',
AStar in 'AStar.pas',
PathFinder in 'PathFinder.pas',
SceneEdit in 'SceneEdit.pas' {FSceneEdit},
Sheets in 'Sheets.pas' {FSheets},
ChooseScene in 'ChooseScene.pas' {FChooseScene},
dynmatrix in 'dynmatrix.pas',
odeimport in 'ODEImport.pas',
SimpleParser in 'SimpleParser.pas',
uPSI_PathFinder in 'uPSI_PathFinder.pas',
uPSI_dynmatrix in 'uPSI_dynmatrix.pas',
cameras in 'cameras.pas' {FCameras},
rlan in 'rlan.pas',
modbusTCP in 'modbusTCP.pas',
//sdposeriallaz,
tachartlazaruspkg,
lnetvisual;
{$R *.res}
begin
Application.Scaled := True;
Application.Initialize;
Application.CreateForm(TFViewer, FViewer);
Application.CreateForm(TFParams, FParams);
Application.CreateForm(TFEditor, FEditor);
Application.CreateForm(TFChart, FChart);
Application.CreateForm(TFWayPointsEdit, FWayPointsEdit);
Application.CreateForm(TFSceneEdit, FSceneEdit);
Application.CreateForm(TFSheets, FSheets);
Application.CreateForm(TFChooseScene, FChooseScene);
Application.CreateForm(TFCameras, FCameras);
Application.Run;
end.