-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathinclude.lua
More file actions
14 lines (14 loc) · 859 Bytes
/
include.lua
File metadata and controls
14 lines (14 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package.path = package.path .. ";FS25_Courseplay/scripts/?.lua"
package.path = package.path .. ";FS25_Courseplay/scripts/util/?.lua"
package.path = package.path .. ";FS25_Courseplay/scripts/test/?.lua"
package.path = package.path .. ";FS25_Courseplay/scripts/graph/?.lua"
package.path = package.path .. ";FS25_Courseplay/scripts/pathfinder/?.lua"
package.path = package.path .. ";FS25_Courseplay/scripts/geometry/?.lua"
package.path = package.path .. ";FS25_Courseplay/scripts/courseGenerator/?.lua"
package.path = package.path .. ";FS25_Courseplay/scripts/courseGenerator/Geometry/?.lua"
package.path = package.path .. ";FS25_Courseplay/scripts/courseGenerator/Genetic/?.lua"
dofile('FS25_Courseplay/scripts/courseGenerator/test/require.lua')
require('AdjustableParameter')
require('ToggleParameter')
require('ListParameter')
require('Exporter')