-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRecastNavigationDelphi.dpr
64 lines (62 loc) · 2.74 KB
/
RecastNavigationDelphi.dpr
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
53
54
55
56
57
58
59
60
61
62
63
64
program RecastNavigationDelphi;
uses
//FastMM4,
Vcl.Forms,
Unit_Form in 'Unit_Form.pas' {Form1},
Unit_FrameCrowdTool in 'Unit_FrameCrowdTool.pas' {FrameCrowdTool: TFrame},
Unit_FramePruneTool in 'Unit_FramePruneTool.pas' {FramePruneTool: TFrame},
Unit_FrameSampleSoloMesh in 'Unit_FrameSampleSoloMesh.pas' {FrameSampleSoloMesh: TFrame},
Unit_FrameSampleTileMesh in 'Unit_FrameSampleTileMesh.pas' {FrameSampleTileMesh: TFrame},
Unit_FrameTesterTool in 'Unit_FrameTesterTool.pas' {FrameTesterTool: TFrame},
Unit_FrameTileTool in 'Unit_FrameTileTool.pas' {FrameTileTool: TFrame},
RN_ChunkyTriMesh in 'RN_ChunkyTriMesh.pas',
RN_CrowdTool in 'RN_CrowdTool.pas',
RN_DebugDraw in 'RN_DebugDraw.pas',
RN_DetourCommon in 'RN_DetourCommon.pas',
RN_DetourCrowd in 'RN_DetourCrowd.pas',
RN_DetourDebugDraw in 'RN_DetourDebugDraw.pas',
RN_DetourDump in 'RN_DetourDump.pas',
RN_DetourLocalBoundary in 'RN_DetourLocalBoundary.pas',
RN_DetourNavMesh in 'RN_DetourNavMesh.pas',
RN_DetourNavMeshBuilder in 'RN_DetourNavMeshBuilder.pas',
RN_DetourNavMeshHelper in 'RN_DetourNavMeshHelper.pas',
RN_DetourNavMeshQuery in 'RN_DetourNavMeshQuery.pas',
RN_DetourNode in 'RN_DetourNode.pas',
RN_DetourObstacleAvoidance in 'RN_DetourObstacleAvoidance.pas',
RN_DetourPathCorridor in 'RN_DetourPathCorridor.pas',
RN_DetourPathQueue in 'RN_DetourPathQueue.pas',
RN_DetourProximityGrid in 'RN_DetourProximityGrid.pas',
RN_DetourStatus in 'RN_DetourStatus.pas',
RN_Helper in 'RN_Helper.pas',
RN_InputGeom in 'RN_InputGeom.pas',
RN_MeshLoaderObj in 'RN_MeshLoaderObj.pas',
RN_NavMeshPruneTool in 'RN_NavMeshPruneTool.pas',
RN_NavMeshTesterTool in 'RN_NavMeshTesterTool.pas',
RN_NavMeshTileTool in 'RN_NavMeshTileTool.pas',
RN_PerfTimer in 'RN_PerfTimer.pas',
RN_Recast in 'RN_Recast.pas',
RN_RecastAlloc in 'RN_RecastAlloc.pas',
RN_RecastArea in 'RN_RecastArea.pas',
RN_RecastContour in 'RN_RecastContour.pas',
RN_RecastContourHelper in 'RN_RecastContourHelper.pas',
RN_RecastDebugDraw in 'RN_RecastDebugDraw.pas',
RN_RecastDump in 'RN_RecastDump.pas',
RN_RecastFilter in 'RN_RecastFilter.pas',
RN_RecastHelper in 'RN_RecastHelper.pas',
RN_RecastLayers in 'RN_RecastLayers.pas',
RN_RecastMesh in 'RN_RecastMesh.pas',
RN_RecastMeshDetail in 'RN_RecastMeshDetail.pas',
RN_RecastRasterization in 'RN_RecastRasterization.pas',
RN_RecastRegion in 'RN_RecastRegion.pas',
RN_Sample in 'RN_Sample.pas',
RN_SampleInterfaces in 'RN_SampleInterfaces.pas',
RN_SampleSoloMesh in 'RN_SampleSoloMesh.pas',
RN_SampleTileMesh in 'RN_SampleTileMesh.pas',
RN_ValueHistory in 'RN_ValueHistory.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.