test case that spawns 2000 mines in a pit. run with ctest -R mines # only works if cmake was ran after pulling this commit
-- Library for parameters handling
params = {}
function parseParams()
if ScriptParam ~= nil then
for k, v in string.gmatch(ScriptParam, "(%w+)=([^,]+)") do
params[k] = v
end
end
end