epic_weather/register.lua

15 lines
236 B
Lua

epic_weather.weatherdefs = {} -- list<weatherdef>
--[[
weatherdef = {
name = ""
}
--]]
epic_weather.register_weather = function(def)
table.insert(epic_weather.weatherdefs, def)
end
epic_weather.register_weather({ name = "None" })