mirror of
https://github.com/opentibiabr/canary
synced 2026-08-16 06:26:09 -04:00
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>
17 lines
494 B
Lua
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")
|