Skip to content

Commit 42777f8

Browse files
committed
Extracted outside of the official module into Base classes
1 parent 2a0fff5 commit 42777f8

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

SharkPlanner/Base/init.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ return {
1010
DCSEventHandlers = require("SharkPlanner.Base.DCSEventHandlers"),
1111
Configuration = require("SharkPlanner.Base.Configuration"),
1212
Camera = require("SharkPlanner.Base.Camera"),
13+
TerrainHelper = require("SharkPlanner.Base.TerrainHelper"),
1314
}

SharkPlanner/Modules/UH-60L/UH60LCommandGenerator.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ local Hemispheres = require("SharkPlanner.Base.Hemispheres")
1212
local Configuration = require("SharkPlanner.Base.Configuration")
1313
-- Table is needed for quick checks
1414
local Table = require("SharkPlanner.Utils.Table")
15-
local TerrainHelper = require("SharkPlanner.Modules.UH-60L.TerrainHelper")
15+
-- TerrainHelper ensure we have a way to interuct with terrain data
16+
local TerrainHelper = require("SharkPlanner.Base.TerrainHelper")
1617
-- for coordinate conversion you might need math module
1718
require("math")
1819

0 commit comments

Comments
 (0)