Basic File System Done

This commit is contained in:
Cooldude2606
2017-06-30 17:30:50 +01:00
parent 0425d56fcc
commit c96c7e85d8
5 changed files with 116 additions and 890 deletions

25
locale/file-header.lua Normal file
View File

@@ -0,0 +1,25 @@
--[[
Explosive Gaming
This file can be used with permission but this and the credit below must remain in the file.
Contact a member of management on our discord to seek permission to use our code.
Any changes that you may make to the code are yours but that does not make the script yours.
Discord: https://discord.gg/XSsBV6b
The credit below may be used by another script do not remove.
]]
local credits = {{
name='File Header - Stand-Alone',
owner='Explosive Gaming',
dev='Cooldude2606',
description='Just A File Header To Organise Code',
factorio_version='0.15.23',
show=false
}}
local function credit_loop(reg) for _,cred in pairs(reg) do table.insert(credits,cred) end end
--Please Only Edit Below This Line-----------------------------------------------------------
credit_loop(require("ExpGaming-Addons/file-header"))
credit_loop(require("Stand-Alone/file-header"))
credit_loop(require("ExpGaming-Core/file-header"))
--Please Only Edit Above This Line-----------------------------------------------------------
return credits