add sborka

This commit is contained in:
2026-03-31 10:27:04 +03:00
commit f5e5f56c84
2345 changed files with 382127 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
/*
____ _ _ ____ __ __ _ _
/ ___|___ __| | ___ __| | | __ ) _ _ | \/ | __ _| | |__ ___ _ __ ___
| | / _ \ / _` |/ _ \/ _` | | _ \| | | | | |\/| |/ _` | | '_ \ / _ \| '__/ _ \
| |__| (_) | (_| | __/ (_| | | |_) | |_| | | | | | (_| | | |_) | (_) | | | (_) |
\____\___/ \__,_|\___|\__,_| |____/ \__, | |_| |_|\__,_|_|_.__/ \___/|_| \___/
|___/
*/
if not PermaProps then PermaProps = {} end
print("---------------------------------")
print("| Loading ClientSide PermaProps |")
print("---------------------------------")
for k, v in pairs(file.Find("permaprops/cl_*.lua", "LUA")) do
include("permaprops/".. v)
print("permaprops/".. v)
end
print("---------------------------------")
print("| Loading Shared PermaProps |")
print("---------------------------------")
for k, v in pairs(file.Find("permaprops/sh_*.lua", "LUA")) do
include("permaprops/".. v)
print("permaprops/".. v)
end
print("---------------------------------")