dobrograd-13-06-2022/garrysmod/addons/util-luadev/lua/autorun/luadev.lua
Jonny_Bro (Nikita) e4d5311906 first commit
2023-11-16 15:01:19 +05:00

18 lines
No EOL
417 B
Lua

module("luadev",package.seeall)
-- I think I finally understood why people make these seemingly silly files with just includes
include 'luadev/luadev_sh.lua'
if SERVER then
include 'luadev/luadev_sv.lua'
end
include 'luadev/luadev.lua'
if CLIENT then
include 'luadev/socketdev.lua'
end
if SERVER then
AddCSLuaFile 'luadev/luadev_sh.lua'
AddCSLuaFile 'luadev/luadev.lua'
AddCSLuaFile 'luadev/socketdev.lua'
end