mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-16 21:33:46 +03:00
42 lines
904 B
Lua
42 lines
904 B
Lua
|
|
--[[
|
||
|
|
| This file was obtained through the combined efforts
|
||
|
|
| of Madbluntz & Plymouth Antiquarian Society.
|
||
|
|
|
|
||
|
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||
|
|
| Maloy, DrPepper10 @ RIP, Atle!
|
||
|
|
|
|
||
|
|
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||
|
|
--]]
|
||
|
|
|
||
|
|
-- VLL_CURR_FILE is local to each file
|
||
|
|
if CLIENT and pac and not VLL_CURR_FILE and not VLL2_FILEDEF then return end
|
||
|
|
|
||
|
|
if SERVER then
|
||
|
|
local function add_files(dir)
|
||
|
|
local files, folders = file.Find(dir .. "*", "LUA")
|
||
|
|
|
||
|
|
for key, file_name in pairs(files) do
|
||
|
|
AddCSLuaFile(dir .. file_name)
|
||
|
|
end
|
||
|
|
|
||
|
|
for key, folder_name in pairs(folders) do
|
||
|
|
add_files(dir .. folder_name .. "/")
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
add_files("pac3/core/client/")
|
||
|
|
add_files("pac3/core/shared/")
|
||
|
|
add_files("pac3/libraries/")
|
||
|
|
|
||
|
|
include("pac3/core/server/init.lua")
|
||
|
|
end
|
||
|
|
|
||
|
|
if CLIENT then
|
||
|
|
if pac and pac.Panic then
|
||
|
|
ProtectedCall(pac.Panic)
|
||
|
|
end
|
||
|
|
|
||
|
|
include("pac3/core/client/init.lua")
|
||
|
|
end
|
||
|
|
|