mirror of
https://github.com/ComfyFactory/ComfyFactorio.git
synced 2025-01-22 03:38:48 +02:00
21 lines
724 B
Lua
21 lines
724 B
Lua
-- This file is part of thesixthroc's Pirate Ship softmod, licensed under GPLv3 and stored at https://github.com/danielmartin0/ComfyFactorio-Pirates.
|
|
|
|
|
|
-- local Memory = require 'maps.pirates.memory'
|
|
-- local Math = require 'maps.pirates.math'
|
|
-- local Balance = require 'maps.pirates.balance'
|
|
-- local Common = require 'maps.pirates.common'
|
|
-- local Utils = require 'maps.pirates.utils_local'
|
|
local _inspect = require 'utils.inspect'.inspect
|
|
|
|
local Public = {}
|
|
local enum = {
|
|
MATTISSO = 'MATTISSO',
|
|
ROC = 'ROC',
|
|
}
|
|
Public[enum.MATTISSO] = require 'maps.pirates.structures.island_structures.mattisso.mattisso'
|
|
Public[enum.ROC] = require 'maps.pirates.structures.island_structures.roc.roc'
|
|
Public.enum = enum
|
|
|
|
|
|
return Public |