mirror of
https://github.com/Dadido3/noita-mapcap.git
synced 2024-11-22 21:17:33 +00:00
David Vogel
607b16e5d2
- Disable sandbox limitations - Refactor some code, clean it up - Make coroutines work inside the mod
16 lines
467 B
Lua
16 lines
467 B
Lua
-- Copyright (c) 2019 David Vogel
|
|
--
|
|
-- This software is released under the MIT License.
|
|
-- https://opensource.org/licenses/MIT
|
|
|
|
if not async then
|
|
dofile("data/scripts/lib/coroutines.lua")
|
|
end
|
|
dofile("data/scripts/perks/perk_list.lua")
|
|
|
|
dofile("mods/noita-mapcap/files/compatibility.lua")
|
|
dofile("mods/noita-mapcap/files/util.lua")
|
|
dofile("mods/noita-mapcap/files/external.lua")
|
|
dofile("mods/noita-mapcap/files/capture.lua")
|
|
dofile("mods/noita-mapcap/files/ui.lua")
|