37 lines
1.1 KiB
Lua
37 lines
1.1 KiB
Lua
/*
|
|
____ _ _ ____ __ __ _ _
|
|
/ ___|___ __| | ___ __| | | __ ) _ _ | \/ | __ _| | |__ ___ _ __ ___
|
|
| | / _ \ / _` |/ _ \/ _` | | _ \| | | | | |\/| |/ _` | | '_ \ / _ \| '__/ _ \
|
|
| |__| (_) | (_| | __/ (_| | | |_) | |_| | | | | | (_| | | |_) | (_) | | | (_) |
|
|
\____\___/ \__,_|\___|\__,_| |____/ \__, | |_| |_|\__,_|_|_.__/ \___/|_| \___/
|
|
|___/
|
|
*/
|
|
|
|
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("---------------------------------")
|