mirror of
https://github.com/APercy/automobiles_pck
synced 2025-06-17 14:28:02 +02:00
15 lines
579 B
Lua
Executable File
15 lines
579 B
Lua
Executable File
--
|
|
-- constants
|
|
--
|
|
trans_am={}
|
|
trans_am.gravity = automobiles_lib.gravity
|
|
|
|
dofile(minetest.get_modpath("automobiles_lib") .. DIR_DELIM .. "custom_physics.lua")
|
|
dofile(minetest.get_modpath("automobiles_lib") .. DIR_DELIM .. "fuel_management.lua")
|
|
dofile(minetest.get_modpath("automobiles_lib") .. DIR_DELIM .. "ground_detection.lua")
|
|
dofile(minetest.get_modpath("automobiles_lib") .. DIR_DELIM .. "control.lua")
|
|
dofile(minetest.get_modpath("automobiles_trans_am") .. DIR_DELIM .. "entities.lua")
|
|
dofile(minetest.get_modpath("automobiles_trans_am") .. DIR_DELIM .. "crafts.lua")
|
|
|
|
|