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

27 lines
422 B
Lua
Raw Normal View History

2018-09-08 18:29:27 +02:00
--[[-- 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