canary/data/libs/libs.lua
Marco 1a7a67bca1
chore: organizing libraries and function locations (#2191)
Organized the libs in the core folder and moved some functions to their
correct files.

---------

Co-authored-by: GitHub Actions <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Elson Costa <elsongabriel@hotmail.com>
2024-02-08 00:50:47 +00:00

17 lines
494 B
Lua

-- Load core functions
dofile(CORE_DIRECTORY .. "/libs/functions/load.lua")
-- Core/data Global Storage System
dofile(CORE_DIRECTORY .. "/libs/core/global_storage.lua")
-- Compatibility library for our old Lua API
dofile(CORE_DIRECTORY .. "/libs/compat/compat.lua")
-- Debugging helper function for Lua developers
dofile(CORE_DIRECTORY .. "/libs/debugging/dump.lua")
-- Systems
dofile(CORE_DIRECTORY .. "/libs/systems/load.lua")
-- Tables
dofile(CORE_DIRECTORY .. "/libs/tables/load.lua")