add sborka
This commit is contained in:
18
garrysmod/addons/luadev/lua/autorun/luadev.lua
Normal file
18
garrysmod/addons/luadev/lua/autorun/luadev.lua
Normal file
@@ -0,0 +1,18 @@
|
||||
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
|
||||
Reference in New Issue
Block a user