1
0
mirror of https://github.com/veden/Rampant.git synced 2025-02-13 13:48:36 +02:00
Rampant/libs/TunnelUtils.lua

15 lines
296 B
Lua
Raw Normal View History

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