feat: import core object

This commit is contained in:
Andyyy7666
2022-12-24 17:01:28 +01:00
parent 08815f2ecd
commit eac4de4623
2 changed files with 5 additions and 3 deletions

View File

@@ -15,16 +15,17 @@ shared_scripts {
client_scripts { client_scripts {
"client/main.lua", "client/main.lua",
"client/functions.lua", "client/functions.lua",
"client/events.lua" "client/events.lua",
"shared/import.lua"
} }
server_scripts { server_scripts {
"@oxmysql/lib/MySQL.lua", "@oxmysql/lib/MySQL.lua",
"config_server.lua", "config_server.lua",
"server/main.lua", "server/main.lua",
"server/functions.lua", "server/functions.lua",
"server/events.lua", "server/events.lua",
"server/commands.lua" "server/commands.lua",
"shared/import.lua"
} }
exports { exports {

1
shared/import.lua Normal file
View File

@@ -0,0 +1 @@
NDCore = exports["ND_Core"]:GetCoreObject()