share/hedgewars/Data/Scripts/Params.lua
author Wuzzy <Wuzzy2@mail.ru>
Thu, 13 Dec 2018 22:50:14 +0100
changeset 14438 a88c61d8976a
parent 9985 42cd42e44c9a
permissions -rw-r--r--
Clean up CREDITS file, move more credits to credits.csv

-- 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