1
0
mirror of https://github.com/veden/Rampant.git synced 2025-01-03 22:52:20 +02:00
Rampant/libs/TunnelUtils.lua

15 lines
296 B
Lua
Raw Normal View History

local tunnelUtils = {}
2018-01-14 07:48:21 +02:00
function tunnelUtils.digTunnel(map, surface, natives, startChunk, endChunk)
2016-08-21 23:48:55 +02:00
end
2018-01-14 07:48:21 +02:00
function tunnelUtils.fillTunnel(map, surface, natives, tilePositions)
2016-08-21 23:48:55 +02:00
local tunnels = natives.tunnels
for i=1, #tunnels do
end
end
2018-01-14 07:48:21 +02:00
return tunnelUtils