1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-14 10:13:13 +02:00
RedMew/map_gen/Diggy/Feature/SimpleRoomGenerator.lua
2018-10-02 10:09:03 +02:00

27 lines
422 B
Lua

--[[-- info
Provides the ability to make a simple room with contents
]]
-- dependencies
-- this
local SimpleRoomGenerator = {}
--[[--
Registers all event handlers.
]]
function SimpleRoomGenerator.register(config)
end
--[[--
Initializes the Feature.
@param config Table {@see Diggy.Config}.
]]
function SimpleRoomGenerator.initialize(config)
end
return SimpleRoomGenerator