mirror of
https://github.com/Refactorio/RedMew.git
synced 2024-12-14 10:13:13 +02:00
27 lines
422 B
Lua
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
|